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]

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

impl Debug for DecreaseStreamRetentionPeriodInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DecreaseStreamRetentionPeriodInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DecreaseStreamRetentionPeriodInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations