@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.312Z") @Stability(value=Stable) public interface CfnStreamProps 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.kinesisvideo.*;
CfnStreamProps cfnStreamProps = CfnStreamProps.builder()
.dataRetentionInHours(123)
.deviceName("deviceName")
.kmsKeyId("kmsKeyId")
.mediaType("mediaType")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStreamProps.Builder
A builder for
CfnStreamProps |
static class |
CfnStreamProps.Jsii$Proxy
An implementation for
CfnStreamProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnStreamProps.Builder |
builder() |
default Number |
getDataRetentionInHours()
How long the stream retains data, in hours.
|
default String |
getDeviceName()
The name of the device that is associated with the stream.
|
default String |
getKmsKeyId()
The ID of the AWS Key Management Service ( AWS KMS ) key that Kinesis Video Streams uses to encrypt data on the stream.
|
default String |
getMediaType()
The `MediaType` of the stream.
|
default String |
getName()
The name of the stream.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @Nullable default Number getDataRetentionInHours()
@Stability(value=Stable) @Nullable default String getDeviceName()
@Stability(value=Stable) @Nullable default String getKmsKeyId()
@Stability(value=Stable) @Nullable default String getMediaType()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnStreamProps.Builder builder()
CfnStreamProps.Builder of CfnStreamPropsCopyright © 2022. All rights reserved.