Interface CfnPackagingGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPackagingGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:00.329Z") @Stability(Stable) public interface CfnPackagingGroupProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnPackagingGroup.

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.mediapackage.*;
 CfnPackagingGroupProps cfnPackagingGroupProps = CfnPackagingGroupProps.builder()
         .id("id")
         // the properties below are optional
         .authorization(AuthorizationProperty.builder()
                 .cdnIdentifierSecret("cdnIdentifierSecret")
                 .secretsRoleArn("secretsRoleArn")
                 .build())
         .egressAccessLogs(LogConfigurationProperty.builder()
                 .logGroupName("logGroupName")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getId

      @Stability(Stable) @NotNull String getId()
      Unique identifier that you assign to the packaging group.
    • getAuthorization

      @Stability(Stable) @Nullable default Object getAuthorization()
      Parameters for CDN authorization.
    • getEgressAccessLogs

      @Stability(Stable) @Nullable default Object getEgressAccessLogs()
      The configuration parameters for egress access logging.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The tags to assign to the packaging group.
    • builder

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