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]

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

impl Debug for RemoveTagsFromStreamInput
[src]

Formats the value using the given formatter. Read more

impl Clone for RemoveTagsFromStreamInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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