Interface CfnPackagingGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPackagingGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-05-31T18:43:33.749Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPackagingGroupPropsstatic final classAn implementation forCfnPackagingGroupProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectParameters for CDN authorization.default ObjectThe configuration parameters for egress access logging.getId()Unique identifier that you assign to the packaging group.default List<software.amazon.awscdk.core.CfnTag>getTags()The tags to assign to the packaging group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getId
Unique identifier that you assign to the packaging group. -
getAuthorization
Parameters for CDN authorization. -
getEgressAccessLogs
The configuration parameters for egress access logging. -
getTags
The tags to assign to the packaging group. -
builder
- Returns:
- a
CfnPackagingGroupProps.BuilderofCfnPackagingGroupProps
-