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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnServiceTemplateProps
static final class
An implementation forCfnServiceTemplateProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
A description of the service template.default String
The service template name as displayed in the developer interface.default String
The customer provided service template encryption key that's used to encrypt data.default String
getName()
The name of the service template.default String
IfpipelineProvisioning
istrue
, 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
IfpipelineProvisioning
istrue
, 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.Builder
ofCfnServiceTemplateProps
-