interface CfnServiceTemplateProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Proton.CfnServiceTemplateProps | 
|  Java | software.amazon.awscdk.services.proton.CfnServiceTemplateProps | 
|  Python | aws_cdk.aws_proton.CfnServiceTemplateProps | 
|  TypeScript | @aws-cdk/aws-proton»CfnServiceTemplateProps | 
Properties for defining a CfnServiceTemplate.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as proton from '@aws-cdk/aws-proton';
const cfnServiceTemplateProps: proton.CfnServiceTemplateProps = {
  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 pipelineProvisioningistrue, 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.
