interface CfnPortalProductMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApiGatewayV2.CfnPortalProductMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapigatewayv2#CfnPortalProductMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.CfnPortalProductMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_apigatewayv2.CfnPortalProductMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apigatewayv2 » CfnPortalProductMixinProps |
Properties for CfnPortalProductPropsMixin.
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/cfn-property-mixins';
const cfnPortalProductMixinProps: apigatewayv2.CfnPortalProductMixinProps = {
description: 'description',
displayName: 'displayName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the portal product. |
| display | string | The name of the portal product as it appears in a published portal. |
| tags? | Cfn[] | The collection of tags associated with the portal product. |
description?
Type:
string
(optional)
A description of the portal product.
displayName?
Type:
string
(optional)
The name of the portal product as it appears in a published portal.
tags?
Type:
Cfn[]
(optional)
The collection of tags associated with the portal product.

.NET
Go
Java
Python
TypeScript