Struct rusoto_kinesis::IncreaseStreamRetentionPeriodInput[][src]

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

Represents the input for IncreaseStreamRetentionPeriod.

Fields

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

The name of the stream to modify.

Trait Implementations

impl Default for IncreaseStreamRetentionPeriodInput
[src]

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

impl Debug for IncreaseStreamRetentionPeriodInput
[src]

Formats the value using the given formatter. Read more

impl Clone for IncreaseStreamRetentionPeriodInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for IncreaseStreamRetentionPeriodInput
[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