CfnEnvironmentTemplateMixinProps
- class aws_cdk.mixins_preview.aws_proton.mixins.CfnEnvironmentTemplateMixinProps(*, description=None, display_name=None, encryption_key=None, name=None, provisioning=None, tags=None)
Bases:
objectProperties for CfnEnvironmentTemplatePropsMixin.
- Parameters:
description (
Optional[str]) – A description of the environment template.display_name (
Optional[str]) – The name of the environment template as displayed in the developer interface.encryption_key (
Optional[str]) – The customer provided encryption key for the environment template.name (
Optional[str]) – The name of the environment template.provisioning (
Optional[str]) – When included, indicates that the environment template is for customer provisioned and managed infrastructure.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An optional list of metadata items that you can associate with the AWS Proton environment template. A tag is a key-value pair. For more information, see AWS Proton resources and tagging in the AWS Proton User Guide .
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_proton import mixins as proton_mixins cfn_environment_template_mixin_props = proton_mixins.CfnEnvironmentTemplateMixinProps( description="description", display_name="displayName", encryption_key="encryptionKey", name="name", provisioning="provisioning", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description of the environment template.
- display_name
The name of the environment template as displayed in the developer interface.
- encryption_key
The customer provided encryption key for the environment template.
- name
The name of the environment template.
- provisioning
When included, indicates that the environment template is for customer provisioned and managed infrastructure.
- tags
An optional list of metadata items that you can associate with the AWS Proton environment template.
A tag is a key-value pair.
For more information, see AWS Proton resources and tagging in the AWS Proton User Guide .