You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A key to extract partition key from JSON object. Default nil, which means partition key will be generated randomly.
aws_key_id
*secret.Secret
No
-
AWS access key id. This parameter is required when your agent is not running on EC2 instance with an IAM Role.
aws_sec_key
*secret.Secret
No
-
AWS secret key. This parameter is required when your agent is not running on EC2 instance with an IAM Role.
aws_ses_token
*secret.Secret
No
-
AWS session token. This parameter is optional, but can be provided if using MFA or temporary credentials when your agent is not running on EC2 instance with an IAM Role.
aws_iam_retries
int
No
-
The number of attempts to make (with exponential backoff) when loading instance profile credentials from the EC2 metadata service using an IAM role. Defaults to 5 retries.
assume_role_credentials
*KinesisStreamAssumeRoleCredentials
No
-
Typically, you can use AssumeRole for cross-account access or federation.
region
string
No
-
AWS region of your stream. It should be in form like us-east-1, us-west-2. Default nil, which means try to find from environment variable AWS_REGION.
retries_on_batch_request
int
No
-
The plugin will put multiple records to Amazon Kinesis Data Streams in batches using PutRecords. A set of records in a batch may fail for reasons documented in the Kinesis Service API Reference for PutRecords. Failed records will be retried retries_on_batch_request times
reset_backoff_if_success
bool
No
-
Boolean, default true. If enabled, when after retrying, the next retrying checks the number of succeeded records on the former batch request and reset exponential backoff if there is any success. Because batch request could be composed by requests across shards, simple exponential backoff for the batch request wouldn't work some cases.
batch_request_max_count
int
No
-
Integer, default 500. The number of max count of making batch request from record chunk. It can't exceed the default value because it's API limit.
batch_request_max_size
int
No
-
Integer. The number of max size of making batch request from record chunk. It can't exceed the default value because it's API limit.