Interface CfnPackagingGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPackagingGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:22.778Z")
@Stability(Stable)
public interface CfnPackagingGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPackagingGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.mediapackage.*;
CfnPackagingGroupMixinProps cfnPackagingGroupMixinProps = CfnPackagingGroupMixinProps.builder()
.authorization(AuthorizationProperty.builder()
.cdnIdentifierSecret("cdnIdentifierSecret")
.secretsRoleArn("secretsRoleArn")
.build())
.egressAccessLogs(LogConfigurationProperty.builder()
.logGroupName("logGroupName")
.build())
.id("id")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPackagingGroupMixinPropsstatic final classAn implementation forCfnPackagingGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectParameters for CDN authorization.default ObjectThe configuration parameters for egress access logging.default StringgetId()Unique identifier that you assign to the packaging group.getTags()The tags to assign to the packaging group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorization
Parameters for CDN authorization.Returns union: either
IResolvableorCfnPackagingGroupPropsMixin.AuthorizationProperty- See Also:
-
getEgressAccessLogs
The configuration parameters for egress access logging.Returns union: either
IResolvableorCfnPackagingGroupPropsMixin.LogConfigurationProperty- See Also:
-
getId
Unique identifier that you assign to the packaging group.- See Also:
-
getTags
The tags to assign to the packaging group.- See Also:
-
builder
-