Struct rusoto_kinesis::RemoveTagsFromStreamInput [] [src]

pub struct RemoveTagsFromStreamInput {
    pub stream_name: String,
    pub tag_keys: Vec<String>,
}

Represents the input for RemoveTagsFromStream.

Fields

The name of the stream.

A list of tag keys. Each corresponding tag is removed from the stream.

Trait Implementations

impl Default for RemoveTagsFromStreamInput
[src]

[src]

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

impl Debug for RemoveTagsFromStreamInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RemoveTagsFromStreamInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations