Struct rusoto_kinesis::StopStreamEncryptionInput [] [src]

pub struct StopStreamEncryptionInput {
    pub encryption_type: String,
    pub key_id: String,
    pub stream_name: String,
}

Fields

The encryption type. This parameter can be one of the following values:

  • NONE: Not valid for this operation. An InvalidOperationException will be thrown.

  • KMS: Use server-side encryption on the records in the stream using a customer-managed KMS key.

The GUID for the customer-managed key that was used for encryption.

The name of the stream on which to stop encrypting records.

Trait Implementations

impl Default for StopStreamEncryptionInput
[src]

[src]

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

impl Debug for StopStreamEncryptionInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for StopStreamEncryptionInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations