Create Product Rest Endpoint Page
| apigatewayv2_create_product_rest_endpoint_page | R Documentation |
Creates a product REST endpoint page for a portal product¶
Description¶
Creates a product REST endpoint page for a portal product.
Usage¶
apigatewayv2_create_product_rest_endpoint_page(DisplayContent,
PortalProductId, RestEndpointIdentifier, TryItState)
Arguments¶
DisplayContent |
The content of the product REST endpoint page. |
PortalProductId |
[required] The portal product identifier. |
RestEndpointIdentifier |
[required] The REST endpoint identifier. |
TryItState |
The try it state of the product REST endpoint page. |
Value¶
A list with the following syntax:
list(
DisplayContent = list(
Body = "string",
Endpoint = "string",
OperationName = "string"
),
LastModified = as.POSIXct(
"2015-01-01"
),
ProductRestEndpointPageArn = "string",
ProductRestEndpointPageId = "string",
RestEndpointIdentifier = list(
IdentifierParts = list(
Method = "string",
Path = "string",
RestApiId = "string",
Stage = "string"
)
),
Status = "AVAILABLE"|"IN_PROGRESS"|"FAILED",
StatusException = list(
Exception = "string",
Message = "string"
),
TryItState = "ENABLED"|"DISABLED"
)
Request syntax¶
svc$create_product_rest_endpoint_page(
DisplayContent = list(
None = list(),
Overrides = list(
Body = "string",
Endpoint = "string",
OperationName = "string"
)
),
PortalProductId = "string",
RestEndpointIdentifier = list(
IdentifierParts = list(
Method = "string",
Path = "string",
RestApiId = "string",
Stage = "string"
)
),
TryItState = "ENABLED"|"DISABLED"
)