Struct rusoto_kinesis::PutRecordOutput [] [src]

pub struct PutRecordOutput {
    pub encryption_type: Option<String>,
    pub sequence_number: String,
    pub shard_id: String,
}

Represents the output for PutRecord.

Fields

The encryption type to use on the record. This parameter can be one of the following values:

  • NONE: Do not encrypt the records in the stream.

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

The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.

The shard ID of the shard where the data record was placed.

Trait Implementations

impl Default for PutRecordOutput
[src]

[src]

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

impl Debug for PutRecordOutput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for PutRecordOutput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations