interface CfnEnvironmentTemplateProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_proton.CfnEnvironmentTemplateProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsproton#CfnEnvironmentTemplateProps | 
|  Java | software.amazon.awscdk.services.proton.CfnEnvironmentTemplateProps | 
|  Python | aws_cdk.aws_proton.CfnEnvironmentTemplateProps | 
|  TypeScript | aws-cdk-lib»aws_proton»CfnEnvironmentTemplateProps | 
Properties for defining a CfnEnvironmentTemplate.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_proton as proton } from 'aws-cdk-lib';
const cfnEnvironmentTemplateProps: proton.CfnEnvironmentTemplateProps = {
  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 .
