CfnServiceTemplateProps
- class aws_cdk.aws_proton.CfnServiceTemplateProps(*, description=None, display_name=None, encryption_key=None, name=None, pipeline_provisioning=None, tags=None)
Bases:
objectProperties for defining a
CfnServiceTemplate.- Parameters:
description (
Optional[str]) – A description of the service template.display_name (
Optional[str]) – The service template name as displayed in the developer interface.encryption_key (
Optional[str]) – The customer provided service template encryption key that’s used to encrypt data.name (
Optional[str]) – The name of the service template.pipeline_provisioning (
Optional[str]) – IfpipelineProvisioningistrue, a service pipeline is included in the service template. Otherwise, a service pipeline isn’t included in the service template.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An object that includes the template bundle S3 bucket path and name for the new version of a service template.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_proton as proton cfn_service_template_props = proton.CfnServiceTemplateProps( description="description", display_name="displayName", encryption_key="encryptionKey", name="name", pipeline_provisioning="pipelineProvisioning", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description of the service template.
- display_name
The service template name as displayed in the developer interface.
- encryption_key
The customer provided service template encryption key that’s used to encrypt data.
- name
The name of the service template.
- pipeline_provisioning
If
pipelineProvisioningistrue, a service pipeline is included in the service template.Otherwise, a service pipeline isn’t included in the service template.
- tags
An object that includes the template bundle S3 bucket path and name for the new version of a service template.