Skip to content

Create Portal Product

apigatewayv2_create_portal_product R Documentation

Creates a new portal product

Description

Creates a new portal product.

Usage

apigatewayv2_create_portal_product(Description, DisplayName, Tags)

Arguments

Description

A description of the portal product.

DisplayName

[required] The name of the portal product as it appears in a published portal.

Tags

The collection of tags. Each tag element is associated with a given resource.

Value

A list with the following syntax:

list(
  Description = "string",
  DisplayName = "string",
  DisplayOrder = list(
    Contents = list(
      list(
        ProductRestEndpointPageArns = list(
          "string"
        ),
        SectionName = "string"
      )
    ),
    OverviewPageArn = "string",
    ProductPageArns = list(
      "string"
    )
  ),
  LastModified = as.POSIXct(
    "2015-01-01"
  ),
  PortalProductArn = "string",
  PortalProductId = "string",
  Tags = list(
    "string"
  )
)

Request syntax

svc$create_portal_product(
  Description = "string",
  DisplayName = "string",
  Tags = list(
    "string"
  )
)