interface CfnPortalProductProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Apigatewayv2.CfnPortalProductProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapigatewayv2#CfnPortalProductProps |
Java | software.amazon.awscdk.services.apigatewayv2.CfnPortalProductProps |
Python | aws_cdk.aws_apigatewayv2.CfnPortalProductProps |
TypeScript | aws-cdk-lib » aws_apigatewayv2 » CfnPortalProductProps |
Properties for defining a CfnPortalProduct.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigatewayv2 as apigatewayv2 } from 'aws-cdk-lib';
const cfnPortalProductProps: apigatewayv2.CfnPortalProductProps = {
displayName: 'displayName',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| display | string | The name of the portal product as it appears in a published portal. |
| description? | string | A description of the portal product. |
| tags? | Cfn[] | The collection of tags associated with the portal product. |
displayName
Type:
string
The name of the portal product as it appears in a published portal.
description?
Type:
string
(optional)
A description of the portal product.
tags?
Type:
Cfn[]
(optional)
The collection of tags associated with the portal product.

.NET
Go
Java
Python
TypeScript