@Stability(value=Stable)
public static interface CfnStreamingDistribution.StreamingDistributionConfigProperty
extends software.amazon.jsii.JsiiSerializable
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cloudfront.*;
StreamingDistributionConfigProperty streamingDistributionConfigProperty = StreamingDistributionConfigProperty.builder()
.comment("comment")
.enabled(false)
.s3Origin(S3OriginProperty.builder()
.domainName("domainName")
.originAccessIdentity("originAccessIdentity")
.build())
.trustedSigners(TrustedSignersProperty.builder()
.enabled(false)
// the properties below are optional
.awsAccountNumbers(List.of("awsAccountNumbers"))
.build())
// the properties below are optional
.aliases(List.of("aliases"))
.logging(LoggingProperty.builder()
.bucket("bucket")
.enabled(false)
.prefix("prefix")
.build())
.priceClass("priceClass")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStreamingDistribution.StreamingDistributionConfigProperty.Builder
|
static class |
CfnStreamingDistribution.StreamingDistributionConfigProperty.Jsii$Proxy
An implementation for
CfnStreamingDistribution.StreamingDistributionConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnStreamingDistribution.StreamingDistributionConfigProperty.Builder |
builder() |
default List<String> |
getAliases()
`CfnStreamingDistribution.StreamingDistributionConfigProperty.Aliases`.
|
String |
getComment()
`CfnStreamingDistribution.StreamingDistributionConfigProperty.Comment`.
|
Object |
getEnabled()
`CfnStreamingDistribution.StreamingDistributionConfigProperty.Enabled`.
|
default Object |
getLogging()
`CfnStreamingDistribution.StreamingDistributionConfigProperty.Logging`.
|
default String |
getPriceClass()
`CfnStreamingDistribution.StreamingDistributionConfigProperty.PriceClass`.
|
Object |
getS3Origin()
`CfnStreamingDistribution.StreamingDistributionConfigProperty.S3Origin`.
|
Object |
getTrustedSigners()
`CfnStreamingDistribution.StreamingDistributionConfigProperty.TrustedSigners`.
|
@Stability(value=Stable) @Nullable default List<String> getAliases()
@Stability(value=Stable) @NotNull String getComment()
@Stability(value=Stable) @NotNull Object getEnabled()
@Stability(value=Stable) @Nullable default Object getLogging()
@Stability(value=Stable) @Nullable default String getPriceClass()
@Stability(value=Stable) @NotNull Object getS3Origin()
@Stability(value=Stable) @NotNull Object getTrustedSigners()
@Stability(value=Stable) static CfnStreamingDistribution.StreamingDistributionConfigProperty.Builder builder()
Copyright © 2021. All rights reserved.