Interface CfnPackagingGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPackagingGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:22.245Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPackagingGroupProps
static final class
An 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.- See Also:
-
getEgressAccessLogs
The configuration parameters for egress access logging.- See Also:
-
getTags
The tags to assign to the packaging group.- See Also:
-
builder
- Returns:
- a
CfnPackagingGroupProps.Builder
ofCfnPackagingGroupProps
-