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();
 
  • Method Details

    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      A description of the service template.
    • getDisplayName

      @Stability(Stable) @Nullable default String getDisplayName()
      The service template name as displayed in the developer interface.
    • getEncryptionKey

      @Stability(Stable) @Nullable default String getEncryptionKey()
      The customer provided service template encryption key that's used to encrypt data.
    • getName

      @Stability(Stable) @Nullable default String getName()
      The name of the service template.
    • getPipelineProvisioning

      @Stability(Stable) @Nullable default String getPipelineProvisioning()
      If pipelineProvisioning is true , a service pipeline is included in the service template.

      Otherwise, a service pipeline isn't included in the service template.

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      An object that includes the template bundle S3 bucket path and name for the new version of a service template.
    • builder

      @Stability(Stable) static CfnServiceTemplateProps.Builder builder()
      Returns:
      a CfnServiceTemplateProps.Builder of CfnServiceTemplateProps