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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-proton-environmenttemplate.html

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 import 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-proton-environmenttemplate.html#cfn-proton-environmenttemplate-description

display_name

The name of the environment template as displayed in the developer interface.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-proton-environmenttemplate.html#cfn-proton-environmenttemplate-displayname

encryption_key

The customer provided encryption key for the environment template.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-proton-environmenttemplate.html#cfn-proton-environmenttemplate-encryptionkey

name

The name of the environment template.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-proton-environmenttemplate.html#cfn-proton-environmenttemplate-name

provisioning

When included, indicates that the environment template is for customer provisioned and managed infrastructure.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-proton-environmenttemplate.html#cfn-proton-environmenttemplate-provisioning

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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-proton-environmenttemplate.html#cfn-proton-environmenttemplate-tags