interface CfnEnvironmentTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Proton.Mixins.CfnEnvironmentTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsproton/mixins#CfnEnvironmentTemplateMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.proton.mixins.CfnEnvironmentTemplateMixinProps |
Python | aws_cdk.mixins_preview.aws_proton.mixins.CfnEnvironmentTemplateMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_proton » mixins » CfnEnvironmentTemplateMixinProps |
Properties for CfnEnvironmentTemplatePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as proton_mixins } from '@aws-cdk/mixins-preview/aws-proton';
const cfnEnvironmentTemplateMixinProps: proton_mixins.CfnEnvironmentTemplateMixinProps = {
description: 'description',
displayName: 'displayName',
encryptionKey: 'encryptionKey',
name: 'name',
provisioning: 'provisioning',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the environment template. |
| display | string | The name of the environment template as displayed in the developer interface. |
| encryption | string | The customer provided encryption key for the environment template. |
| name? | string | The name of the environment template. |
| provisioning? | string | When included, indicates that the environment template is for customer provisioned and managed infrastructure. |
| tags? | Cfn[] | An optional list of metadata items that you can associate with the AWS Proton environment template. |
description?
Type:
string
(optional)
A description of the environment template.
displayName?
Type:
string
(optional)
The name of the environment template as displayed in the developer interface.
encryptionKey?
Type:
string
(optional)
The customer provided encryption key for the environment template.
name?
Type:
string
(optional)
The name of the environment template.
provisioning?
Type:
string
(optional)
When included, indicates that the environment template is for customer provisioned and managed infrastructure.
tags?
Type:
Cfn[]
(optional)
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 .

.NET
Go
Java
Python
TypeScript