CfnPortalProductMixinProps
- class aws_cdk.cfn_property_mixins.aws_apigatewayv2.CfnPortalProductMixinProps(*, description=None, display_name=None, tags=None)
Bases:
objectProperties for CfnPortalProductPropsMixin.
- Parameters:
description (
Optional[str]) – A description of the portal product.display_name (
Optional[str]) – The name of the portal product as it appears in a published portal.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The collection of tags associated with the portal product.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_apigatewayv2 as apigatewayv2 cfn_portal_product_mixin_props = apigatewayv2.CfnPortalProductMixinProps( description="description", display_name="displayName", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description of the portal product.
- display_name
The name of the portal product as it appears in a published portal.
- tags
The collection of tags associated with the portal product.