Struct rusoto_kinesis::DecreaseStreamRetentionPeriodInput [] [src]

pub struct DecreaseStreamRetentionPeriodInput {
    pub retention_period_hours: i64,
    pub stream_name: String,
}

Represents the input for DecreaseStreamRetentionPeriod.

Fields

The new retention period of the stream, in hours. Must be less than the current retention period.

The name of the stream to modify.

Trait Implementations

impl Default for DecreaseStreamRetentionPeriodInput
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for DecreaseStreamRetentionPeriodInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DecreaseStreamRetentionPeriodInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations