@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.917Z") @Stability(value=Stable) public interface CfnChannelProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnChannelProps cfnChannelProps = CfnChannelProps.builder()
.id("id")
// the properties below are optional
.description("description")
.egressAccessLogs(LogConfigurationProperty.builder()
.logGroupName("logGroupName")
.build())
.ingressAccessLogs(LogConfigurationProperty.builder()
.logGroupName("logGroupName")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannelProps.Builder
A builder for
CfnChannelProps |
static class |
CfnChannelProps.Jsii$Proxy
An implementation for
CfnChannelProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannelProps.Builder |
builder() |
default String |
getDescription()
Any descriptive information that you want to add to the channel for future identification purposes.
|
default Object |
getEgressAccessLogs()
Configures egress access logs.
|
String |
getId()
Unique identifier that you assign to the channel.
|
default Object |
getIngressAccessLogs()
Configures ingress access logs.
|
default List<CfnTag> |
getTags()
The tags to assign to the channel.
|
@Stability(value=Stable) @NotNull String getId()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getEgressAccessLogs()
@Stability(value=Stable) @Nullable default Object getIngressAccessLogs()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnChannelProps.Builder builder()
CfnChannelProps.Builder of CfnChannelPropsCopyright © 2022. All rights reserved.