CfnStreamMixinProps

class aws_cdk.mixins_preview.aws_kinesisvideo.mixins.CfnStreamMixinProps(*, data_retention_in_hours=None, device_name=None, kms_key_id=None, media_type=None, name=None, stream_storage_configuration=None, tags=None)

Bases: object

Properties for CfnStreamPropsMixin.

Parameters:
  • data_retention_in_hours (Union[int, float, None]) – How long the stream retains data, in hours.

  • device_name (Optional[str]) – The name of the device that is associated with the stream.

  • kms_key_id (Optional[str]) – The ID of the AWS Key Management Service ( AWS ) key that Kinesis Video Streams uses to encrypt data on the stream.

  • media_type (Optional[str]) – The MediaType of the stream.

  • name (Optional[str]) – The name of the stream.

  • stream_storage_configuration (Union[IResolvable, StreamStorageConfigurationProperty, Dict[str, Any], None]) – The configuration for stream storage, including the default storage tier for stream data. This configuration determines how stream data is stored and accessed, with different tiers offering varying levels of performance and cost optimization.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisvideo-stream.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_kinesisvideo import mixins as kinesisvideo_mixins

cfn_stream_mixin_props = kinesisvideo_mixins.CfnStreamMixinProps(
    data_retention_in_hours=123,
    device_name="deviceName",
    kms_key_id="kmsKeyId",
    media_type="mediaType",
    name="name",
    stream_storage_configuration=kinesisvideo_mixins.CfnStreamPropsMixin.StreamStorageConfigurationProperty(
        default_storage_tier="defaultStorageTier"
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

data_retention_in_hours

How long the stream retains data, in hours.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisvideo-stream.html#cfn-kinesisvideo-stream-dataretentioninhours

device_name

The name of the device that is associated with the stream.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisvideo-stream.html#cfn-kinesisvideo-stream-devicename

kms_key_id

The ID of the AWS Key Management Service ( AWS ) key that Kinesis Video Streams uses to encrypt data on the stream.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisvideo-stream.html#cfn-kinesisvideo-stream-kmskeyid

media_type

The MediaType of the stream.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisvideo-stream.html#cfn-kinesisvideo-stream-mediatype

name

The name of the stream.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisvideo-stream.html#cfn-kinesisvideo-stream-name

stream_storage_configuration

The configuration for stream storage, including the default storage tier for stream data.

This configuration determines how stream data is stored and accessed, with different tiers offering varying levels of performance and cost optimization.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisvideo-stream.html#cfn-kinesisvideo-stream-streamstorageconfiguration

tags

An array of key-value pairs to apply to this resource.

For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisvideo-stream.html#cfn-kinesisvideo-stream-tags