Interface CfnServiceTemplateProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceTemplateProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:01.016Z")
@Stability(Stable)
public interface CfnServiceTemplateProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.proton.*;
CfnServiceTemplateProps cfnServiceTemplateProps = CfnServiceTemplateProps.builder()
.description("description")
.displayName("displayName")
.encryptionKey("encryptionKey")
.name("name")
.pipelineProvisioning("pipelineProvisioning")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServiceTemplatePropsstatic final classAn implementation forCfnServiceTemplateProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description of the service template.default StringThe service template name as displayed in the developer interface.default StringThe customer provided service template encryption key that's used to encrypt data.default StringgetName()The name of the service template.default StringIfpipelineProvisioningistrue, a service pipeline is included in the service template.getTags()An object that includes the template bundle S3 bucket path and name for the new version of a service template.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description of the service template. -
getDisplayName
The service template name as displayed in the developer interface. -
getEncryptionKey
The customer provided service template encryption key that's used to encrypt data. -
getName
The name of the service template. -
getPipelineProvisioning
IfpipelineProvisioningistrue, a service pipeline is included in the service template.Otherwise, a service pipeline isn't included in the service template.
-
getTags
An object that includes the template bundle S3 bucket path and name for the new version of a service template. -
builder
- Returns:
- a
CfnServiceTemplateProps.BuilderofCfnServiceTemplateProps
-