Struct cfn::aws::kinesis::StreamProperties [] [src]

pub struct StreamProperties {
    pub name: Option<Value<String>>,
    pub retention_period_hours: Option<Value<u32>>,
    pub shard_count: Value<u32>,
    pub stream_encryption: Option<Value<StreamEncryption>>,
    pub tags: Option<ValueList<Tag>>,
}

Properties for the Stream resource.

Fields

Property Name.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property RetentionPeriodHours.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ShardCount.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property StreamEncryption.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Tags.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for StreamProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for StreamProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for StreamProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<StreamProperties> for Stream
[src]

[src]

Performs the conversion.

Auto Trait Implementations