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();
-
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. -
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
-