Interface CfnPackagingGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPackagingGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:43.703Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPackagingGroupPropsstatic final classAn implementation forCfnPackagingGroupProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getId
Unique identifier that you assign to the packaging group.- See Also:
-
getAuthorization
Parameters for CDN authorization.Returns union: either
IResolvableorCfnPackagingGroup.AuthorizationProperty- See Also:
-
getEgressAccessLogs
The configuration parameters for egress access logging.Returns union: either
IResolvableorCfnPackagingGroup.LogConfigurationProperty- See Also:
-
getTags
The tags to assign to the packaging group.- See Also:
-
builder
- Returns:
- a
CfnPackagingGroupProps.BuilderofCfnPackagingGroupProps
-