CfnEnvironmentTemplateProps
- class aws_cdk.aws_proton.CfnEnvironmentTemplateProps(*, description=None, display_name=None, encryption_key=None, name=None, provisioning=None, tags=None)
- Bases: - object- Properties for defining a - CfnEnvironmentTemplate.- 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 .
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_proton as proton cfn_environment_template_props = proton.CfnEnvironmentTemplateProps( 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 .