interface CfnServiceTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Proton.Mixins.CfnServiceTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsproton/mixins#CfnServiceTemplateMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.proton.mixins.CfnServiceTemplateMixinProps |
Python | aws_cdk.mixins_preview.aws_proton.mixins.CfnServiceTemplateMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_proton » mixins » CfnServiceTemplateMixinProps |
Properties for CfnServiceTemplatePropsMixin.
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 cfnServiceTemplateMixinProps: proton_mixins.CfnServiceTemplateMixinProps = {
description: 'description',
displayName: 'displayName',
encryptionKey: 'encryptionKey',
name: 'name',
pipelineProvisioning: 'pipelineProvisioning',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the service template. |
| display | string | The service template name as displayed in the developer interface. |
| encryption | string | The customer provided service template encryption key that's used to encrypt data. |
| name? | string | The name of the service template. |
| pipeline | string | If pipelineProvisioning is true , a service pipeline is included in the service template. |
| tags? | Cfn[] | An object that includes the template bundle S3 bucket path and name for the new version of a service template. |
description?
Type:
string
(optional)
A description of the service template.
displayName?
Type:
string
(optional)
The service template name as displayed in the developer interface.
encryptionKey?
Type:
string
(optional)
The customer provided service template encryption key that's used to encrypt data.
name?
Type:
string
(optional)
The name of the service template.
pipelineProvisioning?
Type:
string
(optional)
If pipelineProvisioning is true , a service pipeline is included in the service template.
Otherwise, a service pipeline isn't included in the service template.
tags?
Type:
Cfn[]
(optional)
An object that includes the template bundle S3 bucket path and name for the new version of a service template.

.NET
Go
Java
Python
TypeScript