Struct rusoto_events::KinesisParameters [] [src]

pub struct KinesisParameters {
    pub partition_key_path: String,
}

This object enables you to specify a JSON path to extract from the event and use as the partition key for the Amazon Kinesis stream, so that you can control the shard to which the event goes. If you do not include this parameter, the default is to use the eventId as the partition key.

Fields

The JSON path to be extracted from the event and used as the partition key. For more information, see Amazon Kinesis Streams Key Concepts in the Amazon Kinesis Streams Developer Guide.

Trait Implementations

impl Default for KinesisParameters
[src]

[src]

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

impl Debug for KinesisParameters
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for KinesisParameters
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations