Amazon Kinesis Firehose

2017/11/20 - Amazon Kinesis Firehose - 3 updated api methods

Changes  This release includes a new Kinesis Firehose feature that supports Splunk as Kinesis Firehose delivery destination. You can now use Kinesis Firehose to ingest real-time data to Splunk in a serverless, reliable, and salable manner. This release also includes a new feature that allows you to configure Lambda buffer size in Kinesis Firehose data transformation feature. You can now customize the data buffer size before invoking Lambda function in Kinesis Firehose for data transformation. This feature allows you to flexibly trade-off processing and delivery latency with cost and efficiency based on your specific use cases and requirements.

CreateDeliveryStream (updated) Link ¶
Changes (request)
{'ElasticsearchDestinationConfiguration': {'ProcessingConfiguration': {'Processors': {'Parameters': {'ParameterName': {'BufferIntervalInSeconds',
                                                                                                                       'BufferSizeInMBs',
                                                                                                                       'RoleArn'}}}}},
 'ExtendedS3DestinationConfiguration': {'ProcessingConfiguration': {'Processors': {'Parameters': {'ParameterName': {'BufferIntervalInSeconds',
                                                                                                                    'BufferSizeInMBs',
                                                                                                                    'RoleArn'}}}}},
 'RedshiftDestinationConfiguration': {'ProcessingConfiguration': {'Processors': {'Parameters': {'ParameterName': {'BufferIntervalInSeconds',
                                                                                                                  'BufferSizeInMBs',
                                                                                                                  'RoleArn'}}}}},
 'SplunkDestinationConfiguration': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                 'LogGroupName': 'string',
                                                                 'LogStreamName': 'string'},
                                    'HECAcknowledgmentTimeoutInSeconds': 'integer',
                                    'HECEndpoint': 'string',
                                    'HECEndpointType': 'Raw | Event',
                                    'HECToken': 'string',
                                    'ProcessingConfiguration': {'Enabled': 'boolean',
                                                                'Processors': [{'Parameters': [{'ParameterName': 'LambdaArn '
                                                                                                                 '| '
                                                                                                                 'NumberOfRetries '
                                                                                                                 '| '
                                                                                                                 'RoleArn '
                                                                                                                 '| '
                                                                                                                 'BufferSizeInMBs '
                                                                                                                 '| '
                                                                                                                 'BufferIntervalInSeconds',
                                                                                                'ParameterValue': 'string'}],
                                                                                'Type': 'Lambda'}]},
                                    'RetryOptions': {'DurationInSeconds': 'integer'},
                                    'S3BackupMode': 'FailedEventsOnly | '
                                                    'AllEvents',
                                    'S3Configuration': {'BucketARN': 'string',
                                                        'BufferingHints': {'IntervalInSeconds': 'integer',
                                                                           'SizeInMBs': 'integer'},
                                                        'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                                     'LogGroupName': 'string',
                                                                                     'LogStreamName': 'string'},
                                                        'CompressionFormat': 'UNCOMPRESSED '
                                                                             '| '
                                                                             'GZIP '
                                                                             '| '
                                                                             'ZIP '
                                                                             '| '
                                                                             'Snappy',
                                                        'EncryptionConfiguration': {'KMSEncryptionConfig': {'AWSKMSKeyARN': 'string'},
                                                                                    'NoEncryptionConfig': 'NoEncryption'},
                                                        'Prefix': 'string',
                                                        'RoleARN': 'string'}}}

Creates a delivery stream.

By default, you can create up to 20 delivery streams per region.

This is an asynchronous operation that immediately returns. The initial status of the delivery stream is CREATING . After the delivery stream is created, its status is ACTIVE and it now accepts data. Attempts to send data to a delivery stream that is not in the ACTIVE state cause an exception. To check the state of a delivery stream, use DescribeDeliveryStream.

A Kinesis Firehose delivery stream can be configured to receive records directly from providers using PutRecord or PutRecordBatch, or it can be configured to use an existing Kinesis stream as its source. To specify a Kinesis stream as input, set the DeliveryStreamType parameter to KinesisStreamAsSource , and provide the Kinesis stream ARN and role ARN in the KinesisStreamSourceConfiguration parameter.

A delivery stream is configured with a single destination: Amazon S3, Amazon ES, or Amazon Redshift. You must specify only one of the following destination configuration parameters: ExtendedS3DestinationConfiguration , S3DestinationConfiguration , ElasticsearchDestinationConfiguration , or RedshiftDestinationConfiguration .

When you specify S3DestinationConfiguration , you can also provide the following optional values: BufferingHints , EncryptionConfiguration , and CompressionFormat . By default, if no BufferingHints value is provided, Kinesis Firehose buffers data up to 5 MB or for 5 minutes, whichever condition is satisfied first. Note that BufferingHints is a hint, so there are some cases where the service cannot adhere to these conditions strictly; for example, record boundaries are such that the size is a little over or under the configured buffering size. By default, no encryption is performed. We strongly recommend that you enable encryption to ensure secure data storage in Amazon S3.

A few notes about Amazon Redshift as a destination:

  • An Amazon Redshift destination requires an S3 bucket as intermediate location, as Kinesis Firehose first delivers data to S3 and then uses COPY syntax to load data into an Amazon Redshift table. This is specified in the RedshiftDestinationConfiguration.S3Configuration parameter.

  • The compression formats SNAPPY or ZIP cannot be specified in RedshiftDestinationConfiguration.S3Configuration because the Amazon Redshift COPY operation that reads from the S3 bucket doesn't support these compression formats.

  • We strongly recommend that you use the user name and password you provide exclusively with Kinesis Firehose, and that the permissions for the account are restricted for Amazon Redshift INSERT permissions.

Kinesis Firehose assumes the IAM role that is configured as part of the destination. The role should allow the Kinesis Firehose principal to assume the role, and the role should have permissions that allow the service to deliver the data. For more information, see Amazon S3 Bucket Access in the Amazon Kinesis Firehose Developer Guide .

See also: AWS API Documentation

Request Syntax

client.create_delivery_stream(
    DeliveryStreamName='string',
    DeliveryStreamType='DirectPut'|'KinesisStreamAsSource',
    KinesisStreamSourceConfiguration={
        'KinesisStreamARN': 'string',
        'RoleARN': 'string'
    },
    S3DestinationConfiguration={
        'RoleARN': 'string',
        'BucketARN': 'string',
        'Prefix': 'string',
        'BufferingHints': {
            'SizeInMBs': 123,
            'IntervalInSeconds': 123
        },
        'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
        'EncryptionConfiguration': {
            'NoEncryptionConfig': 'NoEncryption',
            'KMSEncryptionConfig': {
                'AWSKMSKeyARN': 'string'
            }
        },
        'CloudWatchLoggingOptions': {
            'Enabled': True|False,
            'LogGroupName': 'string',
            'LogStreamName': 'string'
        }
    },
    ExtendedS3DestinationConfiguration={
        'RoleARN': 'string',
        'BucketARN': 'string',
        'Prefix': 'string',
        'BufferingHints': {
            'SizeInMBs': 123,
            'IntervalInSeconds': 123
        },
        'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
        'EncryptionConfiguration': {
            'NoEncryptionConfig': 'NoEncryption',
            'KMSEncryptionConfig': {
                'AWSKMSKeyARN': 'string'
            }
        },
        'CloudWatchLoggingOptions': {
            'Enabled': True|False,
            'LogGroupName': 'string',
            'LogStreamName': 'string'
        },
        'ProcessingConfiguration': {
            'Enabled': True|False,
            'Processors': [
                {
                    'Type': 'Lambda',
                    'Parameters': [
                        {
                            'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                            'ParameterValue': 'string'
                        },
                    ]
                },
            ]
        },
        'S3BackupMode': 'Disabled'|'Enabled',
        'S3BackupConfiguration': {
            'RoleARN': 'string',
            'BucketARN': 'string',
            'Prefix': 'string',
            'BufferingHints': {
                'SizeInMBs': 123,
                'IntervalInSeconds': 123
            },
            'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
            'EncryptionConfiguration': {
                'NoEncryptionConfig': 'NoEncryption',
                'KMSEncryptionConfig': {
                    'AWSKMSKeyARN': 'string'
                }
            },
            'CloudWatchLoggingOptions': {
                'Enabled': True|False,
                'LogGroupName': 'string',
                'LogStreamName': 'string'
            }
        }
    },
    RedshiftDestinationConfiguration={
        'RoleARN': 'string',
        'ClusterJDBCURL': 'string',
        'CopyCommand': {
            'DataTableName': 'string',
            'DataTableColumns': 'string',
            'CopyOptions': 'string'
        },
        'Username': 'string',
        'Password': 'string',
        'RetryOptions': {
            'DurationInSeconds': 123
        },
        'S3Configuration': {
            'RoleARN': 'string',
            'BucketARN': 'string',
            'Prefix': 'string',
            'BufferingHints': {
                'SizeInMBs': 123,
                'IntervalInSeconds': 123
            },
            'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
            'EncryptionConfiguration': {
                'NoEncryptionConfig': 'NoEncryption',
                'KMSEncryptionConfig': {
                    'AWSKMSKeyARN': 'string'
                }
            },
            'CloudWatchLoggingOptions': {
                'Enabled': True|False,
                'LogGroupName': 'string',
                'LogStreamName': 'string'
            }
        },
        'ProcessingConfiguration': {
            'Enabled': True|False,
            'Processors': [
                {
                    'Type': 'Lambda',
                    'Parameters': [
                        {
                            'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                            'ParameterValue': 'string'
                        },
                    ]
                },
            ]
        },
        'S3BackupMode': 'Disabled'|'Enabled',
        'S3BackupConfiguration': {
            'RoleARN': 'string',
            'BucketARN': 'string',
            'Prefix': 'string',
            'BufferingHints': {
                'SizeInMBs': 123,
                'IntervalInSeconds': 123
            },
            'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
            'EncryptionConfiguration': {
                'NoEncryptionConfig': 'NoEncryption',
                'KMSEncryptionConfig': {
                    'AWSKMSKeyARN': 'string'
                }
            },
            'CloudWatchLoggingOptions': {
                'Enabled': True|False,
                'LogGroupName': 'string',
                'LogStreamName': 'string'
            }
        },
        'CloudWatchLoggingOptions': {
            'Enabled': True|False,
            'LogGroupName': 'string',
            'LogStreamName': 'string'
        }
    },
    ElasticsearchDestinationConfiguration={
        'RoleARN': 'string',
        'DomainARN': 'string',
        'IndexName': 'string',
        'TypeName': 'string',
        'IndexRotationPeriod': 'NoRotation'|'OneHour'|'OneDay'|'OneWeek'|'OneMonth',
        'BufferingHints': {
            'IntervalInSeconds': 123,
            'SizeInMBs': 123
        },
        'RetryOptions': {
            'DurationInSeconds': 123
        },
        'S3BackupMode': 'FailedDocumentsOnly'|'AllDocuments',
        'S3Configuration': {
            'RoleARN': 'string',
            'BucketARN': 'string',
            'Prefix': 'string',
            'BufferingHints': {
                'SizeInMBs': 123,
                'IntervalInSeconds': 123
            },
            'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
            'EncryptionConfiguration': {
                'NoEncryptionConfig': 'NoEncryption',
                'KMSEncryptionConfig': {
                    'AWSKMSKeyARN': 'string'
                }
            },
            'CloudWatchLoggingOptions': {
                'Enabled': True|False,
                'LogGroupName': 'string',
                'LogStreamName': 'string'
            }
        },
        'ProcessingConfiguration': {
            'Enabled': True|False,
            'Processors': [
                {
                    'Type': 'Lambda',
                    'Parameters': [
                        {
                            'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                            'ParameterValue': 'string'
                        },
                    ]
                },
            ]
        },
        'CloudWatchLoggingOptions': {
            'Enabled': True|False,
            'LogGroupName': 'string',
            'LogStreamName': 'string'
        }
    },
    SplunkDestinationConfiguration={
        'HECEndpoint': 'string',
        'HECEndpointType': 'Raw'|'Event',
        'HECToken': 'string',
        'HECAcknowledgmentTimeoutInSeconds': 123,
        'RetryOptions': {
            'DurationInSeconds': 123
        },
        'S3BackupMode': 'FailedEventsOnly'|'AllEvents',
        'S3Configuration': {
            'RoleARN': 'string',
            'BucketARN': 'string',
            'Prefix': 'string',
            'BufferingHints': {
                'SizeInMBs': 123,
                'IntervalInSeconds': 123
            },
            'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
            'EncryptionConfiguration': {
                'NoEncryptionConfig': 'NoEncryption',
                'KMSEncryptionConfig': {
                    'AWSKMSKeyARN': 'string'
                }
            },
            'CloudWatchLoggingOptions': {
                'Enabled': True|False,
                'LogGroupName': 'string',
                'LogStreamName': 'string'
            }
        },
        'ProcessingConfiguration': {
            'Enabled': True|False,
            'Processors': [
                {
                    'Type': 'Lambda',
                    'Parameters': [
                        {
                            'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                            'ParameterValue': 'string'
                        },
                    ]
                },
            ]
        },
        'CloudWatchLoggingOptions': {
            'Enabled': True|False,
            'LogGroupName': 'string',
            'LogStreamName': 'string'
        }
    }
)
type DeliveryStreamName

string

param DeliveryStreamName

[REQUIRED]

The name of the delivery stream. This name must be unique per AWS account in the same region. If the delivery streams are in different accounts or different regions, you can have multiple delivery streams with the same name.

type DeliveryStreamType

string

param DeliveryStreamType

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

  • DirectPut : Provider applications access the delivery stream directly.

  • KinesisStreamAsSource : The delivery stream uses a Kinesis stream as a source.

type KinesisStreamSourceConfiguration

dict

param KinesisStreamSourceConfiguration

When a Kinesis stream is used as the source for the delivery stream, a KinesisStreamSourceConfiguration containing the Kinesis stream ARN and the role ARN for the source stream.

  • KinesisStreamARN (string) -- [REQUIRED]

    The ARN of the source Kinesis stream.

  • RoleARN (string) -- [REQUIRED]

    The ARN of the role that provides access to the source Kinesis stream.

type S3DestinationConfiguration

dict

param S3DestinationConfiguration

[Deprecated] The destination in Amazon S3. You can specify only one destination.

  • RoleARN (string) -- [REQUIRED]

    The ARN of the AWS credentials.

  • BucketARN (string) -- [REQUIRED]

    The ARN of the S3 bucket.

  • Prefix (string) --

    The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

  • BufferingHints (dict) --

    The buffering option. If no value is specified, BufferingHints object default values are used.

    • SizeInMBs (integer) --

      Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

      We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

    • IntervalInSeconds (integer) --

      Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

  • CompressionFormat (string) --

    The compression format. If no value is specified, the default is UNCOMPRESSED .

    The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

  • EncryptionConfiguration (dict) --

    The encryption configuration. If no value is specified, the default is no encryption.

    • NoEncryptionConfig (string) --

      Specifically override existing encryption information to ensure that no encryption is used.

    • KMSEncryptionConfig (dict) --

      The encryption key.

      • AWSKMSKeyARN (string) -- [REQUIRED]

        The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

  • CloudWatchLoggingOptions (dict) --

    The CloudWatch logging options for your delivery stream.

    • Enabled (boolean) --

      Enables or disables CloudWatch logging.

    • LogGroupName (string) --

      The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

    • LogStreamName (string) --

      The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

type ExtendedS3DestinationConfiguration

dict

param ExtendedS3DestinationConfiguration

The destination in Amazon S3. You can specify only one destination.

  • RoleARN (string) -- [REQUIRED]

    The ARN of the AWS credentials.

  • BucketARN (string) -- [REQUIRED]

    The ARN of the S3 bucket.

  • Prefix (string) --

    The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

  • BufferingHints (dict) --

    The buffering option.

    • SizeInMBs (integer) --

      Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

      We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

    • IntervalInSeconds (integer) --

      Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

  • CompressionFormat (string) --

    The compression format. If no value is specified, the default is UNCOMPRESSED.

  • EncryptionConfiguration (dict) --

    The encryption configuration. If no value is specified, the default is no encryption.

    • NoEncryptionConfig (string) --

      Specifically override existing encryption information to ensure that no encryption is used.

    • KMSEncryptionConfig (dict) --

      The encryption key.

      • AWSKMSKeyARN (string) -- [REQUIRED]

        The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

  • CloudWatchLoggingOptions (dict) --

    The CloudWatch logging options for your delivery stream.

    • Enabled (boolean) --

      Enables or disables CloudWatch logging.

    • LogGroupName (string) --

      The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

    • LogStreamName (string) --

      The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

  • ProcessingConfiguration (dict) --

    The data processing configuration.

    • Enabled (boolean) --

      Enables or disables data processing.

    • Processors (list) --

      The data processors.

      • (dict) --

        Describes a data processor.

        • Type (string) -- [REQUIRED]

          The type of processor.

        • Parameters (list) --

          The processor parameters.

          • (dict) --

            Describes the processor parameter.

            • ParameterName (string) -- [REQUIRED]

              The name of the parameter.

            • ParameterValue (string) -- [REQUIRED]

              The parameter value.

  • S3BackupMode (string) --

    The Amazon S3 backup mode.

  • S3BackupConfiguration (dict) --

    The configuration for backup in Amazon S3.

    • RoleARN (string) -- [REQUIRED]

      The ARN of the AWS credentials.

    • BucketARN (string) -- [REQUIRED]

      The ARN of the S3 bucket.

    • Prefix (string) --

      The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

    • BufferingHints (dict) --

      The buffering option. If no value is specified, BufferingHints object default values are used.

      • SizeInMBs (integer) --

        Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

        We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

      • IntervalInSeconds (integer) --

        Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

    • CompressionFormat (string) --

      The compression format. If no value is specified, the default is UNCOMPRESSED .

      The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

    • EncryptionConfiguration (dict) --

      The encryption configuration. If no value is specified, the default is no encryption.

      • NoEncryptionConfig (string) --

        Specifically override existing encryption information to ensure that no encryption is used.

      • KMSEncryptionConfig (dict) --

        The encryption key.

        • AWSKMSKeyARN (string) -- [REQUIRED]

          The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

    • CloudWatchLoggingOptions (dict) --

      The CloudWatch logging options for your delivery stream.

      • Enabled (boolean) --

        Enables or disables CloudWatch logging.

      • LogGroupName (string) --

        The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

      • LogStreamName (string) --

        The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

type RedshiftDestinationConfiguration

dict

param RedshiftDestinationConfiguration

The destination in Amazon Redshift. You can specify only one destination.

  • RoleARN (string) -- [REQUIRED]

    The ARN of the AWS credentials.

  • ClusterJDBCURL (string) -- [REQUIRED]

    The database connection string.

  • CopyCommand (dict) -- [REQUIRED]

    The COPY command.

    • DataTableName (string) -- [REQUIRED]

      The name of the target table. The table must already exist in the database.

    • DataTableColumns (string) --

      A comma-separated list of column names.

    • CopyOptions (string) --

      Optional parameters to use with the Amazon Redshift COPY command. For more information, see the "Optional Parameters" section of Amazon Redshift COPY command. Some possible examples that would apply to Kinesis Firehose are as follows:

      delimiter '\t' lzop; - fields are delimited with "t" (TAB character) and compressed using lzop.

      delimiter '|' - fields are delimited with "|" (this is the default delimiter).

      delimiter '|' escape - the delimiter should be escaped.

      fixedwidth 'venueid:3,venuename:25,venuecity:12,venuestate:2,venueseats:6' - fields are fixed width in the source, with each width specified after every column in the table.

      JSON 's3://mybucket/jsonpaths.txt' - data is in JSON format, and the path specified is the format of the data.

      For more examples, see Amazon Redshift COPY command examples.

  • Username (string) -- [REQUIRED]

    The name of the user.

  • Password (string) -- [REQUIRED]

    The user password.

  • RetryOptions (dict) --

    The retry behavior in case Kinesis Firehose is unable to deliver documents to Amazon Redshift. Default value is 3600 (60 minutes).

    • DurationInSeconds (integer) --

      The length of time during which Kinesis Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Kinesis Firehose does not retry if the value of DurationInSeconds is 0 (zero) or if the first delivery attempt takes longer than the current value.

  • S3Configuration (dict) -- [REQUIRED]

    The configuration for the intermediate Amazon S3 location from which Amazon Redshift obtains data. Restrictions are described in the topic for CreateDeliveryStream.

    The compression formats SNAPPY or ZIP cannot be specified in RedshiftDestinationConfiguration.S3Configuration because the Amazon Redshift COPY operation that reads from the S3 bucket doesn't support these compression formats.

    • RoleARN (string) -- [REQUIRED]

      The ARN of the AWS credentials.

    • BucketARN (string) -- [REQUIRED]

      The ARN of the S3 bucket.

    • Prefix (string) --

      The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

    • BufferingHints (dict) --

      The buffering option. If no value is specified, BufferingHints object default values are used.

      • SizeInMBs (integer) --

        Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

        We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

      • IntervalInSeconds (integer) --

        Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

    • CompressionFormat (string) --

      The compression format. If no value is specified, the default is UNCOMPRESSED .

      The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

    • EncryptionConfiguration (dict) --

      The encryption configuration. If no value is specified, the default is no encryption.

      • NoEncryptionConfig (string) --

        Specifically override existing encryption information to ensure that no encryption is used.

      • KMSEncryptionConfig (dict) --

        The encryption key.

        • AWSKMSKeyARN (string) -- [REQUIRED]

          The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

    • CloudWatchLoggingOptions (dict) --

      The CloudWatch logging options for your delivery stream.

      • Enabled (boolean) --

        Enables or disables CloudWatch logging.

      • LogGroupName (string) --

        The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

      • LogStreamName (string) --

        The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

  • ProcessingConfiguration (dict) --

    The data processing configuration.

    • Enabled (boolean) --

      Enables or disables data processing.

    • Processors (list) --

      The data processors.

      • (dict) --

        Describes a data processor.

        • Type (string) -- [REQUIRED]

          The type of processor.

        • Parameters (list) --

          The processor parameters.

          • (dict) --

            Describes the processor parameter.

            • ParameterName (string) -- [REQUIRED]

              The name of the parameter.

            • ParameterValue (string) -- [REQUIRED]

              The parameter value.

  • S3BackupMode (string) --

    The Amazon S3 backup mode.

  • S3BackupConfiguration (dict) --

    The configuration for backup in Amazon S3.

    • RoleARN (string) -- [REQUIRED]

      The ARN of the AWS credentials.

    • BucketARN (string) -- [REQUIRED]

      The ARN of the S3 bucket.

    • Prefix (string) --

      The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

    • BufferingHints (dict) --

      The buffering option. If no value is specified, BufferingHints object default values are used.

      • SizeInMBs (integer) --

        Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

        We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

      • IntervalInSeconds (integer) --

        Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

    • CompressionFormat (string) --

      The compression format. If no value is specified, the default is UNCOMPRESSED .

      The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

    • EncryptionConfiguration (dict) --

      The encryption configuration. If no value is specified, the default is no encryption.

      • NoEncryptionConfig (string) --

        Specifically override existing encryption information to ensure that no encryption is used.

      • KMSEncryptionConfig (dict) --

        The encryption key.

        • AWSKMSKeyARN (string) -- [REQUIRED]

          The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

    • CloudWatchLoggingOptions (dict) --

      The CloudWatch logging options for your delivery stream.

      • Enabled (boolean) --

        Enables or disables CloudWatch logging.

      • LogGroupName (string) --

        The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

      • LogStreamName (string) --

        The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

  • CloudWatchLoggingOptions (dict) --

    The CloudWatch logging options for your delivery stream.

    • Enabled (boolean) --

      Enables or disables CloudWatch logging.

    • LogGroupName (string) --

      The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

    • LogStreamName (string) --

      The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

type ElasticsearchDestinationConfiguration

dict

param ElasticsearchDestinationConfiguration

The destination in Amazon ES. You can specify only one destination.

  • RoleARN (string) -- [REQUIRED]

    The ARN of the IAM role to be assumed by Kinesis Firehose for calling the Amazon ES Configuration API and for indexing documents. For more information, see Amazon S3 Bucket Access.

  • DomainARN (string) -- [REQUIRED]

    The ARN of the Amazon ES domain. The IAM role must have permissions for DescribeElasticsearchDomain , DescribeElasticsearchDomains , and DescribeElasticsearchDomainConfig after assuming the role specified in RoleARN .

  • IndexName (string) -- [REQUIRED]

    The Elasticsearch index name.

  • TypeName (string) -- [REQUIRED]

    The Elasticsearch type name.

  • IndexRotationPeriod (string) --

    The Elasticsearch index rotation period. Index rotation appends a time stamp to the IndexName to facilitate the expiration of old data. For more information, see Index Rotation for Amazon Elasticsearch Service Destination. The default value is OneDay .

  • BufferingHints (dict) --

    The buffering options. If no value is specified, the default values for ElasticsearchBufferingHints are used.

    • IntervalInSeconds (integer) --

      Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300 (5 minutes).

    • SizeInMBs (integer) --

      Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

      We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

  • RetryOptions (dict) --

    The retry behavior in case Kinesis Firehose is unable to deliver documents to Amazon ES. The default value is 300 (5 minutes).

    • DurationInSeconds (integer) --

      After an initial failure to deliver to Amazon ES, the total amount of time during which Kinesis Firehose re-attempts delivery (including the first attempt). After this time has elapsed, the failed documents are written to Amazon S3. Default value is 300 seconds (5 minutes). A value of 0 (zero) results in no retries.

  • S3BackupMode (string) --

    Defines how documents should be delivered to Amazon S3. When set to FailedDocumentsOnly, Kinesis Firehose writes any documents that could not be indexed to the configured Amazon S3 destination, with elasticsearch-failed/ appended to the key prefix. When set to AllDocuments, Kinesis Firehose delivers all incoming records to Amazon S3, and also writes failed documents with elasticsearch-failed/ appended to the prefix. For more information, see Amazon S3 Backup for Amazon Elasticsearch Service Destination. Default value is FailedDocumentsOnly.

  • S3Configuration (dict) -- [REQUIRED]

    The configuration for the backup Amazon S3 location.

    • RoleARN (string) -- [REQUIRED]

      The ARN of the AWS credentials.

    • BucketARN (string) -- [REQUIRED]

      The ARN of the S3 bucket.

    • Prefix (string) --

      The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

    • BufferingHints (dict) --

      The buffering option. If no value is specified, BufferingHints object default values are used.

      • SizeInMBs (integer) --

        Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

        We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

      • IntervalInSeconds (integer) --

        Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

    • CompressionFormat (string) --

      The compression format. If no value is specified, the default is UNCOMPRESSED .

      The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

    • EncryptionConfiguration (dict) --

      The encryption configuration. If no value is specified, the default is no encryption.

      • NoEncryptionConfig (string) --

        Specifically override existing encryption information to ensure that no encryption is used.

      • KMSEncryptionConfig (dict) --

        The encryption key.

        • AWSKMSKeyARN (string) -- [REQUIRED]

          The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

    • CloudWatchLoggingOptions (dict) --

      The CloudWatch logging options for your delivery stream.

      • Enabled (boolean) --

        Enables or disables CloudWatch logging.

      • LogGroupName (string) --

        The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

      • LogStreamName (string) --

        The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

  • ProcessingConfiguration (dict) --

    The data processing configuration.

    • Enabled (boolean) --

      Enables or disables data processing.

    • Processors (list) --

      The data processors.

      • (dict) --

        Describes a data processor.

        • Type (string) -- [REQUIRED]

          The type of processor.

        • Parameters (list) --

          The processor parameters.

          • (dict) --

            Describes the processor parameter.

            • ParameterName (string) -- [REQUIRED]

              The name of the parameter.

            • ParameterValue (string) -- [REQUIRED]

              The parameter value.

  • CloudWatchLoggingOptions (dict) --

    The CloudWatch logging options for your delivery stream.

    • Enabled (boolean) --

      Enables or disables CloudWatch logging.

    • LogGroupName (string) --

      The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

    • LogStreamName (string) --

      The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

type SplunkDestinationConfiguration

dict

param SplunkDestinationConfiguration

The destination in Splunk. You can specify only one destination.

  • HECEndpoint (string) -- [REQUIRED]

    The HTTP Event Collector (HEC) endpoint to which Kinesis Firehose sends your data.

  • HECEndpointType (string) -- [REQUIRED]

    This type can be either "Raw" or "Event".

  • HECToken (string) -- [REQUIRED]

    This is a GUID you obtain from your Splunk cluster when you create a new HEC endpoint.

  • HECAcknowledgmentTimeoutInSeconds (integer) --

    The amount of time that Kinesis Firehose waits to receive an acknowledgment from Splunk after it sends it data. At the end of the timeout period Kinesis Firehose either tries to send the data again or considers it an error, based on your retry settings.

  • RetryOptions (dict) --

    The retry behavior in case Kinesis Firehose is unable to deliver data to Splunk or if it doesn't receive an acknowledgment of receipt from Splunk.

    • DurationInSeconds (integer) --

      The total amount of time that Kinesis Firehose spends on retries. This duration starts after the initial attempt to send data to Splunk fails and doesn't include the periods during which Kinesis Firehose waits for acknowledgment from Splunk after each attempt.

  • S3BackupMode (string) --

    Defines how documents should be delivered to Amazon S3. When set to FailedDocumentsOnly , Kinesis Firehose writes any data that could not be indexed to the configured Amazon S3 destination. When set to AllDocuments , Kinesis Firehose delivers all incoming records to Amazon S3, and also writes failed documents to Amazon S3. Default value is FailedDocumentsOnly .

  • S3Configuration (dict) -- [REQUIRED]

    The configuration for the backup Amazon S3 location.

    • RoleARN (string) -- [REQUIRED]

      The ARN of the AWS credentials.

    • BucketARN (string) -- [REQUIRED]

      The ARN of the S3 bucket.

    • Prefix (string) --

      The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

    • BufferingHints (dict) --

      The buffering option. If no value is specified, BufferingHints object default values are used.

      • SizeInMBs (integer) --

        Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

        We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

      • IntervalInSeconds (integer) --

        Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

    • CompressionFormat (string) --

      The compression format. If no value is specified, the default is UNCOMPRESSED .

      The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

    • EncryptionConfiguration (dict) --

      The encryption configuration. If no value is specified, the default is no encryption.

      • NoEncryptionConfig (string) --

        Specifically override existing encryption information to ensure that no encryption is used.

      • KMSEncryptionConfig (dict) --

        The encryption key.

        • AWSKMSKeyARN (string) -- [REQUIRED]

          The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

    • CloudWatchLoggingOptions (dict) --

      The CloudWatch logging options for your delivery stream.

      • Enabled (boolean) --

        Enables or disables CloudWatch logging.

      • LogGroupName (string) --

        The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

      • LogStreamName (string) --

        The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

  • ProcessingConfiguration (dict) --

    The data processing configuration.

    • Enabled (boolean) --

      Enables or disables data processing.

    • Processors (list) --

      The data processors.

      • (dict) --

        Describes a data processor.

        • Type (string) -- [REQUIRED]

          The type of processor.

        • Parameters (list) --

          The processor parameters.

          • (dict) --

            Describes the processor parameter.

            • ParameterName (string) -- [REQUIRED]

              The name of the parameter.

            • ParameterValue (string) -- [REQUIRED]

              The parameter value.

  • CloudWatchLoggingOptions (dict) --

    The CloudWatch logging options for your delivery stream.

    • Enabled (boolean) --

      Enables or disables CloudWatch logging.

    • LogGroupName (string) --

      The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

    • LogStreamName (string) --

      The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

rtype

dict

returns

Response Syntax

{
    'DeliveryStreamARN': 'string'
}

Response Structure

  • (dict) --

    • DeliveryStreamARN (string) --

      The ARN of the delivery stream.

DescribeDeliveryStream (updated) Link ¶
Changes (response)
{'DeliveryStreamDescription': {'Destinations': {'ElasticsearchDestinationDescription': {'ProcessingConfiguration': {'Processors': {'Parameters': {'ParameterName': {'BufferIntervalInSeconds',
                                                                                                                                                                    'BufferSizeInMBs',
                                                                                                                                                                    'RoleArn'}}}}},
                                                'ExtendedS3DestinationDescription': {'ProcessingConfiguration': {'Processors': {'Parameters': {'ParameterName': {'BufferIntervalInSeconds',
                                                                                                                                                                 'BufferSizeInMBs',
                                                                                                                                                                 'RoleArn'}}}}},
                                                'RedshiftDestinationDescription': {'ProcessingConfiguration': {'Processors': {'Parameters': {'ParameterName': {'BufferIntervalInSeconds',
                                                                                                                                                               'BufferSizeInMBs',
                                                                                                                                                               'RoleArn'}}}}},
                                                'SplunkDestinationDescription': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                                                              'LogGroupName': 'string',
                                                                                                              'LogStreamName': 'string'},
                                                                                 'HECAcknowledgmentTimeoutInSeconds': 'integer',
                                                                                 'HECEndpoint': 'string',
                                                                                 'HECEndpointType': 'Raw '
                                                                                                    '| '
                                                                                                    'Event',
                                                                                 'HECToken': 'string',
                                                                                 'ProcessingConfiguration': {'Enabled': 'boolean',
                                                                                                             'Processors': [{'Parameters': [{'ParameterName': 'LambdaArn '
                                                                                                                                                              '| '
                                                                                                                                                              'NumberOfRetries '
                                                                                                                                                              '| '
                                                                                                                                                              'RoleArn '
                                                                                                                                                              '| '
                                                                                                                                                              'BufferSizeInMBs '
                                                                                                                                                              '| '
                                                                                                                                                              'BufferIntervalInSeconds',
                                                                                                                                             'ParameterValue': 'string'}],
                                                                                                                             'Type': 'Lambda'}]},
                                                                                 'RetryOptions': {'DurationInSeconds': 'integer'},
                                                                                 'S3BackupMode': 'FailedEventsOnly '
                                                                                                 '| '
                                                                                                 'AllEvents',
                                                                                 'S3DestinationDescription': {'BucketARN': 'string',
                                                                                                              'BufferingHints': {'IntervalInSeconds': 'integer',
                                                                                                                                 'SizeInMBs': 'integer'},
                                                                                                              'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                                                                                           'LogGroupName': 'string',
                                                                                                                                           'LogStreamName': 'string'},
                                                                                                              'CompressionFormat': 'UNCOMPRESSED '
                                                                                                                                   '| '
                                                                                                                                   'GZIP '
                                                                                                                                   '| '
                                                                                                                                   'ZIP '
                                                                                                                                   '| '
                                                                                                                                   'Snappy',
                                                                                                              'EncryptionConfiguration': {'KMSEncryptionConfig': {'AWSKMSKeyARN': 'string'},
                                                                                                                                          'NoEncryptionConfig': 'NoEncryption'},
                                                                                                              'Prefix': 'string',
                                                                                                              'RoleARN': 'string'}}}}}

Describes the specified delivery stream and gets the status. For example, after your delivery stream is created, call DescribeDeliveryStream to see if the delivery stream is ACTIVE and therefore ready for data to be sent to it.

See also: AWS API Documentation

Request Syntax

client.describe_delivery_stream(
    DeliveryStreamName='string',
    Limit=123,
    ExclusiveStartDestinationId='string'
)
type DeliveryStreamName

string

param DeliveryStreamName

[REQUIRED]

The name of the delivery stream.

type Limit

integer

param Limit

The limit on the number of destinations to return. Currently, you can have one destination per delivery stream.

type ExclusiveStartDestinationId

string

param ExclusiveStartDestinationId

The ID of the destination to start returning the destination information. Currently, Kinesis Firehose supports one destination per delivery stream.

rtype

dict

returns

Response Syntax

{
    'DeliveryStreamDescription': {
        'DeliveryStreamName': 'string',
        'DeliveryStreamARN': 'string',
        'DeliveryStreamStatus': 'CREATING'|'DELETING'|'ACTIVE',
        'DeliveryStreamType': 'DirectPut'|'KinesisStreamAsSource',
        'VersionId': 'string',
        'CreateTimestamp': datetime(2015, 1, 1),
        'LastUpdateTimestamp': datetime(2015, 1, 1),
        'Source': {
            'KinesisStreamSourceDescription': {
                'KinesisStreamARN': 'string',
                'RoleARN': 'string',
                'DeliveryStartTimestamp': datetime(2015, 1, 1)
            }
        },
        'Destinations': [
            {
                'DestinationId': 'string',
                'S3DestinationDescription': {
                    'RoleARN': 'string',
                    'BucketARN': 'string',
                    'Prefix': 'string',
                    'BufferingHints': {
                        'SizeInMBs': 123,
                        'IntervalInSeconds': 123
                    },
                    'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
                    'EncryptionConfiguration': {
                        'NoEncryptionConfig': 'NoEncryption',
                        'KMSEncryptionConfig': {
                            'AWSKMSKeyARN': 'string'
                        }
                    },
                    'CloudWatchLoggingOptions': {
                        'Enabled': True|False,
                        'LogGroupName': 'string',
                        'LogStreamName': 'string'
                    }
                },
                'ExtendedS3DestinationDescription': {
                    'RoleARN': 'string',
                    'BucketARN': 'string',
                    'Prefix': 'string',
                    'BufferingHints': {
                        'SizeInMBs': 123,
                        'IntervalInSeconds': 123
                    },
                    'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
                    'EncryptionConfiguration': {
                        'NoEncryptionConfig': 'NoEncryption',
                        'KMSEncryptionConfig': {
                            'AWSKMSKeyARN': 'string'
                        }
                    },
                    'CloudWatchLoggingOptions': {
                        'Enabled': True|False,
                        'LogGroupName': 'string',
                        'LogStreamName': 'string'
                    },
                    'ProcessingConfiguration': {
                        'Enabled': True|False,
                        'Processors': [
                            {
                                'Type': 'Lambda',
                                'Parameters': [
                                    {
                                        'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                                        'ParameterValue': 'string'
                                    },
                                ]
                            },
                        ]
                    },
                    'S3BackupMode': 'Disabled'|'Enabled',
                    'S3BackupDescription': {
                        'RoleARN': 'string',
                        'BucketARN': 'string',
                        'Prefix': 'string',
                        'BufferingHints': {
                            'SizeInMBs': 123,
                            'IntervalInSeconds': 123
                        },
                        'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
                        'EncryptionConfiguration': {
                            'NoEncryptionConfig': 'NoEncryption',
                            'KMSEncryptionConfig': {
                                'AWSKMSKeyARN': 'string'
                            }
                        },
                        'CloudWatchLoggingOptions': {
                            'Enabled': True|False,
                            'LogGroupName': 'string',
                            'LogStreamName': 'string'
                        }
                    }
                },
                'RedshiftDestinationDescription': {
                    'RoleARN': 'string',
                    'ClusterJDBCURL': 'string',
                    'CopyCommand': {
                        'DataTableName': 'string',
                        'DataTableColumns': 'string',
                        'CopyOptions': 'string'
                    },
                    'Username': 'string',
                    'RetryOptions': {
                        'DurationInSeconds': 123
                    },
                    'S3DestinationDescription': {
                        'RoleARN': 'string',
                        'BucketARN': 'string',
                        'Prefix': 'string',
                        'BufferingHints': {
                            'SizeInMBs': 123,
                            'IntervalInSeconds': 123
                        },
                        'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
                        'EncryptionConfiguration': {
                            'NoEncryptionConfig': 'NoEncryption',
                            'KMSEncryptionConfig': {
                                'AWSKMSKeyARN': 'string'
                            }
                        },
                        'CloudWatchLoggingOptions': {
                            'Enabled': True|False,
                            'LogGroupName': 'string',
                            'LogStreamName': 'string'
                        }
                    },
                    'ProcessingConfiguration': {
                        'Enabled': True|False,
                        'Processors': [
                            {
                                'Type': 'Lambda',
                                'Parameters': [
                                    {
                                        'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                                        'ParameterValue': 'string'
                                    },
                                ]
                            },
                        ]
                    },
                    'S3BackupMode': 'Disabled'|'Enabled',
                    'S3BackupDescription': {
                        'RoleARN': 'string',
                        'BucketARN': 'string',
                        'Prefix': 'string',
                        'BufferingHints': {
                            'SizeInMBs': 123,
                            'IntervalInSeconds': 123
                        },
                        'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
                        'EncryptionConfiguration': {
                            'NoEncryptionConfig': 'NoEncryption',
                            'KMSEncryptionConfig': {
                                'AWSKMSKeyARN': 'string'
                            }
                        },
                        'CloudWatchLoggingOptions': {
                            'Enabled': True|False,
                            'LogGroupName': 'string',
                            'LogStreamName': 'string'
                        }
                    },
                    'CloudWatchLoggingOptions': {
                        'Enabled': True|False,
                        'LogGroupName': 'string',
                        'LogStreamName': 'string'
                    }
                },
                'ElasticsearchDestinationDescription': {
                    'RoleARN': 'string',
                    'DomainARN': 'string',
                    'IndexName': 'string',
                    'TypeName': 'string',
                    'IndexRotationPeriod': 'NoRotation'|'OneHour'|'OneDay'|'OneWeek'|'OneMonth',
                    'BufferingHints': {
                        'IntervalInSeconds': 123,
                        'SizeInMBs': 123
                    },
                    'RetryOptions': {
                        'DurationInSeconds': 123
                    },
                    'S3BackupMode': 'FailedDocumentsOnly'|'AllDocuments',
                    'S3DestinationDescription': {
                        'RoleARN': 'string',
                        'BucketARN': 'string',
                        'Prefix': 'string',
                        'BufferingHints': {
                            'SizeInMBs': 123,
                            'IntervalInSeconds': 123
                        },
                        'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
                        'EncryptionConfiguration': {
                            'NoEncryptionConfig': 'NoEncryption',
                            'KMSEncryptionConfig': {
                                'AWSKMSKeyARN': 'string'
                            }
                        },
                        'CloudWatchLoggingOptions': {
                            'Enabled': True|False,
                            'LogGroupName': 'string',
                            'LogStreamName': 'string'
                        }
                    },
                    'ProcessingConfiguration': {
                        'Enabled': True|False,
                        'Processors': [
                            {
                                'Type': 'Lambda',
                                'Parameters': [
                                    {
                                        'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                                        'ParameterValue': 'string'
                                    },
                                ]
                            },
                        ]
                    },
                    'CloudWatchLoggingOptions': {
                        'Enabled': True|False,
                        'LogGroupName': 'string',
                        'LogStreamName': 'string'
                    }
                },
                'SplunkDestinationDescription': {
                    'HECEndpoint': 'string',
                    'HECEndpointType': 'Raw'|'Event',
                    'HECToken': 'string',
                    'HECAcknowledgmentTimeoutInSeconds': 123,
                    'RetryOptions': {
                        'DurationInSeconds': 123
                    },
                    'S3BackupMode': 'FailedEventsOnly'|'AllEvents',
                    'S3DestinationDescription': {
                        'RoleARN': 'string',
                        'BucketARN': 'string',
                        'Prefix': 'string',
                        'BufferingHints': {
                            'SizeInMBs': 123,
                            'IntervalInSeconds': 123
                        },
                        'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
                        'EncryptionConfiguration': {
                            'NoEncryptionConfig': 'NoEncryption',
                            'KMSEncryptionConfig': {
                                'AWSKMSKeyARN': 'string'
                            }
                        },
                        'CloudWatchLoggingOptions': {
                            'Enabled': True|False,
                            'LogGroupName': 'string',
                            'LogStreamName': 'string'
                        }
                    },
                    'ProcessingConfiguration': {
                        'Enabled': True|False,
                        'Processors': [
                            {
                                'Type': 'Lambda',
                                'Parameters': [
                                    {
                                        'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                                        'ParameterValue': 'string'
                                    },
                                ]
                            },
                        ]
                    },
                    'CloudWatchLoggingOptions': {
                        'Enabled': True|False,
                        'LogGroupName': 'string',
                        'LogStreamName': 'string'
                    }
                }
            },
        ],
        'HasMoreDestinations': True|False
    }
}

Response Structure

  • (dict) --

    • DeliveryStreamDescription (dict) --

      Information about the delivery stream.

      • DeliveryStreamName (string) --

        The name of the delivery stream.

      • DeliveryStreamARN (string) --

        The Amazon Resource Name (ARN) of the delivery stream.

      • DeliveryStreamStatus (string) --

        The status of the delivery stream.

      • DeliveryStreamType (string) --

        The delivery stream type. This can be one of the following values:

        • DirectPut : Provider applications access the delivery stream directly.

        • KinesisStreamAsSource : The delivery stream uses a Kinesis stream as a source.

      • VersionId (string) --

        Each time the destination is updated for a delivery stream, the version ID is changed, and the current version ID is required when updating the destination. This is so that the service knows it is applying the changes to the correct version of the delivery stream.

      • CreateTimestamp (datetime) --

        The date and time that the delivery stream was created.

      • LastUpdateTimestamp (datetime) --

        The date and time that the delivery stream was last updated.

      • Source (dict) --

        If the DeliveryStreamType parameter is KinesisStreamAsSource , a SourceDescription object describing the source Kinesis stream.

        • KinesisStreamSourceDescription (dict) --

          The KinesisStreamSourceDescription value for the source Kinesis stream.

          • KinesisStreamARN (string) --

            The ARN of the source Kinesis stream.

          • RoleARN (string) --

            The ARN of the role used by the source Kinesis stream.

          • DeliveryStartTimestamp (datetime) --

            Kinesis Firehose starts retrieving records from the Kinesis stream starting with this time stamp.

      • Destinations (list) --

        The destinations.

        • (dict) --

          Describes the destination for a delivery stream.

          • DestinationId (string) --

            The ID of the destination.

          • S3DestinationDescription (dict) --

            [Deprecated] The destination in Amazon S3.

            • RoleARN (string) --

              The ARN of the AWS credentials.

            • BucketARN (string) --

              The ARN of the S3 bucket.

            • Prefix (string) --

              The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

            • BufferingHints (dict) --

              The buffering option. If no value is specified, BufferingHints object default values are used.

              • SizeInMBs (integer) --

                Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

                We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

              • IntervalInSeconds (integer) --

                Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

            • CompressionFormat (string) --

              The compression format. If no value is specified, the default is UNCOMPRESSED .

            • EncryptionConfiguration (dict) --

              The encryption configuration. If no value is specified, the default is no encryption.

              • NoEncryptionConfig (string) --

                Specifically override existing encryption information to ensure that no encryption is used.

              • KMSEncryptionConfig (dict) --

                The encryption key.

                • AWSKMSKeyARN (string) --

                  The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

            • CloudWatchLoggingOptions (dict) --

              The CloudWatch logging options for your delivery stream.

              • Enabled (boolean) --

                Enables or disables CloudWatch logging.

              • LogGroupName (string) --

                The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

              • LogStreamName (string) --

                The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

          • ExtendedS3DestinationDescription (dict) --

            The destination in Amazon S3.

            • RoleARN (string) --

              The ARN of the AWS credentials.

            • BucketARN (string) --

              The ARN of the S3 bucket.

            • Prefix (string) --

              The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

            • BufferingHints (dict) --

              The buffering option.

              • SizeInMBs (integer) --

                Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

                We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

              • IntervalInSeconds (integer) --

                Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

            • CompressionFormat (string) --

              The compression format. If no value is specified, the default is UNCOMPRESSED .

            • EncryptionConfiguration (dict) --

              The encryption configuration. If no value is specified, the default is no encryption.

              • NoEncryptionConfig (string) --

                Specifically override existing encryption information to ensure that no encryption is used.

              • KMSEncryptionConfig (dict) --

                The encryption key.

                • AWSKMSKeyARN (string) --

                  The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

            • CloudWatchLoggingOptions (dict) --

              The CloudWatch logging options for your delivery stream.

              • Enabled (boolean) --

                Enables or disables CloudWatch logging.

              • LogGroupName (string) --

                The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

              • LogStreamName (string) --

                The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

            • ProcessingConfiguration (dict) --

              The data processing configuration.

              • Enabled (boolean) --

                Enables or disables data processing.

              • Processors (list) --

                The data processors.

                • (dict) --

                  Describes a data processor.

                  • Type (string) --

                    The type of processor.

                  • Parameters (list) --

                    The processor parameters.

                    • (dict) --

                      Describes the processor parameter.

                      • ParameterName (string) --

                        The name of the parameter.

                      • ParameterValue (string) --

                        The parameter value.

            • S3BackupMode (string) --

              The Amazon S3 backup mode.

            • S3BackupDescription (dict) --

              The configuration for backup in Amazon S3.

              • RoleARN (string) --

                The ARN of the AWS credentials.

              • BucketARN (string) --

                The ARN of the S3 bucket.

              • Prefix (string) --

                The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

              • BufferingHints (dict) --

                The buffering option. If no value is specified, BufferingHints object default values are used.

                • SizeInMBs (integer) --

                  Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

                  We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

                • IntervalInSeconds (integer) --

                  Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

              • CompressionFormat (string) --

                The compression format. If no value is specified, the default is UNCOMPRESSED .

              • EncryptionConfiguration (dict) --

                The encryption configuration. If no value is specified, the default is no encryption.

                • NoEncryptionConfig (string) --

                  Specifically override existing encryption information to ensure that no encryption is used.

                • KMSEncryptionConfig (dict) --

                  The encryption key.

                  • AWSKMSKeyARN (string) --

                    The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

              • CloudWatchLoggingOptions (dict) --

                The CloudWatch logging options for your delivery stream.

                • Enabled (boolean) --

                  Enables or disables CloudWatch logging.

                • LogGroupName (string) --

                  The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

                • LogStreamName (string) --

                  The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

          • RedshiftDestinationDescription (dict) --

            The destination in Amazon Redshift.

            • RoleARN (string) --

              The ARN of the AWS credentials.

            • ClusterJDBCURL (string) --

              The database connection string.

            • CopyCommand (dict) --

              The COPY command.

              • DataTableName (string) --

                The name of the target table. The table must already exist in the database.

              • DataTableColumns (string) --

                A comma-separated list of column names.

              • CopyOptions (string) --

                Optional parameters to use with the Amazon Redshift COPY command. For more information, see the "Optional Parameters" section of Amazon Redshift COPY command. Some possible examples that would apply to Kinesis Firehose are as follows:

                delimiter '\t' lzop; - fields are delimited with "t" (TAB character) and compressed using lzop.

                delimiter '|' - fields are delimited with "|" (this is the default delimiter).

                delimiter '|' escape - the delimiter should be escaped.

                fixedwidth 'venueid:3,venuename:25,venuecity:12,venuestate:2,venueseats:6' - fields are fixed width in the source, with each width specified after every column in the table.

                JSON 's3://mybucket/jsonpaths.txt' - data is in JSON format, and the path specified is the format of the data.

                For more examples, see Amazon Redshift COPY command examples.

            • Username (string) --

              The name of the user.

            • RetryOptions (dict) --

              The retry behavior in case Kinesis Firehose is unable to deliver documents to Amazon Redshift. Default value is 3600 (60 minutes).

              • DurationInSeconds (integer) --

                The length of time during which Kinesis Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Kinesis Firehose does not retry if the value of DurationInSeconds is 0 (zero) or if the first delivery attempt takes longer than the current value.

            • S3DestinationDescription (dict) --

              The Amazon S3 destination.

              • RoleARN (string) --

                The ARN of the AWS credentials.

              • BucketARN (string) --

                The ARN of the S3 bucket.

              • Prefix (string) --

                The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

              • BufferingHints (dict) --

                The buffering option. If no value is specified, BufferingHints object default values are used.

                • SizeInMBs (integer) --

                  Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

                  We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

                • IntervalInSeconds (integer) --

                  Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

              • CompressionFormat (string) --

                The compression format. If no value is specified, the default is UNCOMPRESSED .

              • EncryptionConfiguration (dict) --

                The encryption configuration. If no value is specified, the default is no encryption.

                • NoEncryptionConfig (string) --

                  Specifically override existing encryption information to ensure that no encryption is used.

                • KMSEncryptionConfig (dict) --

                  The encryption key.

                  • AWSKMSKeyARN (string) --

                    The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

              • CloudWatchLoggingOptions (dict) --

                The CloudWatch logging options for your delivery stream.

                • Enabled (boolean) --

                  Enables or disables CloudWatch logging.

                • LogGroupName (string) --

                  The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

                • LogStreamName (string) --

                  The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

            • ProcessingConfiguration (dict) --

              The data processing configuration.

              • Enabled (boolean) --

                Enables or disables data processing.

              • Processors (list) --

                The data processors.

                • (dict) --

                  Describes a data processor.

                  • Type (string) --

                    The type of processor.

                  • Parameters (list) --

                    The processor parameters.

                    • (dict) --

                      Describes the processor parameter.

                      • ParameterName (string) --

                        The name of the parameter.

                      • ParameterValue (string) --

                        The parameter value.

            • S3BackupMode (string) --

              The Amazon S3 backup mode.

            • S3BackupDescription (dict) --

              The configuration for backup in Amazon S3.

              • RoleARN (string) --

                The ARN of the AWS credentials.

              • BucketARN (string) --

                The ARN of the S3 bucket.

              • Prefix (string) --

                The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

              • BufferingHints (dict) --

                The buffering option. If no value is specified, BufferingHints object default values are used.

                • SizeInMBs (integer) --

                  Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

                  We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

                • IntervalInSeconds (integer) --

                  Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

              • CompressionFormat (string) --

                The compression format. If no value is specified, the default is UNCOMPRESSED .

              • EncryptionConfiguration (dict) --

                The encryption configuration. If no value is specified, the default is no encryption.

                • NoEncryptionConfig (string) --

                  Specifically override existing encryption information to ensure that no encryption is used.

                • KMSEncryptionConfig (dict) --

                  The encryption key.

                  • AWSKMSKeyARN (string) --

                    The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

              • CloudWatchLoggingOptions (dict) --

                The CloudWatch logging options for your delivery stream.

                • Enabled (boolean) --

                  Enables or disables CloudWatch logging.

                • LogGroupName (string) --

                  The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

                • LogStreamName (string) --

                  The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

            • CloudWatchLoggingOptions (dict) --

              The CloudWatch logging options for your delivery stream.

              • Enabled (boolean) --

                Enables or disables CloudWatch logging.

              • LogGroupName (string) --

                The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

              • LogStreamName (string) --

                The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

          • ElasticsearchDestinationDescription (dict) --

            The destination in Amazon ES.

            • RoleARN (string) --

              The ARN of the AWS credentials.

            • DomainARN (string) --

              The ARN of the Amazon ES domain.

            • IndexName (string) --

              The Elasticsearch index name.

            • TypeName (string) --

              The Elasticsearch type name.

            • IndexRotationPeriod (string) --

              The Elasticsearch index rotation period

            • BufferingHints (dict) --

              The buffering options.

              • IntervalInSeconds (integer) --

                Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300 (5 minutes).

              • SizeInMBs (integer) --

                Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

                We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

            • RetryOptions (dict) --

              The Amazon ES retry options.

              • DurationInSeconds (integer) --

                After an initial failure to deliver to Amazon ES, the total amount of time during which Kinesis Firehose re-attempts delivery (including the first attempt). After this time has elapsed, the failed documents are written to Amazon S3. Default value is 300 seconds (5 minutes). A value of 0 (zero) results in no retries.

            • S3BackupMode (string) --

              The Amazon S3 backup mode.

            • S3DestinationDescription (dict) --

              The Amazon S3 destination.

              • RoleARN (string) --

                The ARN of the AWS credentials.

              • BucketARN (string) --

                The ARN of the S3 bucket.

              • Prefix (string) --

                The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

              • BufferingHints (dict) --

                The buffering option. If no value is specified, BufferingHints object default values are used.

                • SizeInMBs (integer) --

                  Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

                  We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

                • IntervalInSeconds (integer) --

                  Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

              • CompressionFormat (string) --

                The compression format. If no value is specified, the default is UNCOMPRESSED .

              • EncryptionConfiguration (dict) --

                The encryption configuration. If no value is specified, the default is no encryption.

                • NoEncryptionConfig (string) --

                  Specifically override existing encryption information to ensure that no encryption is used.

                • KMSEncryptionConfig (dict) --

                  The encryption key.

                  • AWSKMSKeyARN (string) --

                    The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

              • CloudWatchLoggingOptions (dict) --

                The CloudWatch logging options for your delivery stream.

                • Enabled (boolean) --

                  Enables or disables CloudWatch logging.

                • LogGroupName (string) --

                  The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

                • LogStreamName (string) --

                  The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

            • ProcessingConfiguration (dict) --

              The data processing configuration.

              • Enabled (boolean) --

                Enables or disables data processing.

              • Processors (list) --

                The data processors.

                • (dict) --

                  Describes a data processor.

                  • Type (string) --

                    The type of processor.

                  • Parameters (list) --

                    The processor parameters.

                    • (dict) --

                      Describes the processor parameter.

                      • ParameterName (string) --

                        The name of the parameter.

                      • ParameterValue (string) --

                        The parameter value.

            • CloudWatchLoggingOptions (dict) --

              The CloudWatch logging options.

              • Enabled (boolean) --

                Enables or disables CloudWatch logging.

              • LogGroupName (string) --

                The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

              • LogStreamName (string) --

                The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

          • SplunkDestinationDescription (dict) --

            The destination in Splunk.

            • HECEndpoint (string) --

              The HTTP Event Collector (HEC) endpoint to which Kinesis Firehose sends your data.

            • HECEndpointType (string) --

              This type can be either "Raw" or "Event".

            • HECToken (string) --

              This is a GUID you obtain from your Splunk cluster when you create a new HEC endpoint.

            • HECAcknowledgmentTimeoutInSeconds (integer) --

              The amount of time that Kinesis Firehose waits to receive an acknowledgment from Splunk after it sends it data. At the end of the timeout period Kinesis Firehose either tries to send the data again or considers it an error, based on your retry settings.

            • RetryOptions (dict) --

              The retry behavior in case Kinesis Firehose is unable to deliver data to Splunk or if it doesn't receive an acknowledgment of receipt from Splunk.

              • DurationInSeconds (integer) --

                The total amount of time that Kinesis Firehose spends on retries. This duration starts after the initial attempt to send data to Splunk fails and doesn't include the periods during which Kinesis Firehose waits for acknowledgment from Splunk after each attempt.

            • S3BackupMode (string) --

              Defines how documents should be delivered to Amazon S3. When set to FailedDocumentsOnly , Kinesis Firehose writes any data that could not be indexed to the configured Amazon S3 destination. When set to AllDocuments , Kinesis Firehose delivers all incoming records to Amazon S3, and also writes failed documents to Amazon S3. Default value is FailedDocumentsOnly .

            • S3DestinationDescription (dict) --

              The Amazon S3 destination.>

              • RoleARN (string) --

                The ARN of the AWS credentials.

              • BucketARN (string) --

                The ARN of the S3 bucket.

              • Prefix (string) --

                The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

              • BufferingHints (dict) --

                The buffering option. If no value is specified, BufferingHints object default values are used.

                • SizeInMBs (integer) --

                  Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

                  We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

                • IntervalInSeconds (integer) --

                  Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

              • CompressionFormat (string) --

                The compression format. If no value is specified, the default is UNCOMPRESSED .

              • EncryptionConfiguration (dict) --

                The encryption configuration. If no value is specified, the default is no encryption.

                • NoEncryptionConfig (string) --

                  Specifically override existing encryption information to ensure that no encryption is used.

                • KMSEncryptionConfig (dict) --

                  The encryption key.

                  • AWSKMSKeyARN (string) --

                    The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

              • CloudWatchLoggingOptions (dict) --

                The CloudWatch logging options for your delivery stream.

                • Enabled (boolean) --

                  Enables or disables CloudWatch logging.

                • LogGroupName (string) --

                  The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

                • LogStreamName (string) --

                  The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

            • ProcessingConfiguration (dict) --

              The data processing configuration.

              • Enabled (boolean) --

                Enables or disables data processing.

              • Processors (list) --

                The data processors.

                • (dict) --

                  Describes a data processor.

                  • Type (string) --

                    The type of processor.

                  • Parameters (list) --

                    The processor parameters.

                    • (dict) --

                      Describes the processor parameter.

                      • ParameterName (string) --

                        The name of the parameter.

                      • ParameterValue (string) --

                        The parameter value.

            • CloudWatchLoggingOptions (dict) --

              The CloudWatch logging options for your delivery stream.

              • Enabled (boolean) --

                Enables or disables CloudWatch logging.

              • LogGroupName (string) --

                The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

              • LogStreamName (string) --

                The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

      • HasMoreDestinations (boolean) --

        Indicates whether there are more destinations available to list.

UpdateDestination (updated) Link ¶
Changes (request)
{'ElasticsearchDestinationUpdate': {'ProcessingConfiguration': {'Processors': {'Parameters': {'ParameterName': {'BufferIntervalInSeconds',
                                                                                                                'BufferSizeInMBs',
                                                                                                                'RoleArn'}}}}},
 'ExtendedS3DestinationUpdate': {'ProcessingConfiguration': {'Processors': {'Parameters': {'ParameterName': {'BufferIntervalInSeconds',
                                                                                                             'BufferSizeInMBs',
                                                                                                             'RoleArn'}}}}},
 'RedshiftDestinationUpdate': {'ProcessingConfiguration': {'Processors': {'Parameters': {'ParameterName': {'BufferIntervalInSeconds',
                                                                                                           'BufferSizeInMBs',
                                                                                                           'RoleArn'}}}}},
 'SplunkDestinationUpdate': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                          'LogGroupName': 'string',
                                                          'LogStreamName': 'string'},
                             'HECAcknowledgmentTimeoutInSeconds': 'integer',
                             'HECEndpoint': 'string',
                             'HECEndpointType': 'Raw | Event',
                             'HECToken': 'string',
                             'ProcessingConfiguration': {'Enabled': 'boolean',
                                                         'Processors': [{'Parameters': [{'ParameterName': 'LambdaArn '
                                                                                                          '| '
                                                                                                          'NumberOfRetries '
                                                                                                          '| '
                                                                                                          'RoleArn '
                                                                                                          '| '
                                                                                                          'BufferSizeInMBs '
                                                                                                          '| '
                                                                                                          'BufferIntervalInSeconds',
                                                                                         'ParameterValue': 'string'}],
                                                                         'Type': 'Lambda'}]},
                             'RetryOptions': {'DurationInSeconds': 'integer'},
                             'S3BackupMode': 'FailedEventsOnly | AllEvents',
                             'S3Update': {'BucketARN': 'string',
                                          'BufferingHints': {'IntervalInSeconds': 'integer',
                                                             'SizeInMBs': 'integer'},
                                          'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                       'LogGroupName': 'string',
                                                                       'LogStreamName': 'string'},
                                          'CompressionFormat': 'UNCOMPRESSED | '
                                                               'GZIP | ZIP | '
                                                               'Snappy',
                                          'EncryptionConfiguration': {'KMSEncryptionConfig': {'AWSKMSKeyARN': 'string'},
                                                                      'NoEncryptionConfig': 'NoEncryption'},
                                          'Prefix': 'string',
                                          'RoleARN': 'string'}}}

Updates the specified destination of the specified delivery stream.

You can use this operation to change the destination type (for example, to replace the Amazon S3 destination with Amazon Redshift) or change the parameters associated with a destination (for example, to change the bucket name of the Amazon S3 destination). The update might not occur immediately. The target delivery stream remains active while the configurations are updated, so data writes to the delivery stream can continue during this process. The updated configurations are usually effective within a few minutes.

Note that switching between Amazon ES and other services is not supported. For an Amazon ES destination, you can only update to another Amazon ES destination.

If the destination type is the same, Kinesis Firehose merges the configuration parameters specified with the destination configuration that already exists on the delivery stream. If any of the parameters are not specified in the call, the existing values are retained. For example, in the Amazon S3 destination, if EncryptionConfiguration is not specified, then the existing EncryptionConfiguration is maintained on the destination.

If the destination type is not the same, for example, changing the destination from Amazon S3 to Amazon Redshift, Kinesis Firehose does not merge any parameters. In this case, all parameters must be specified.

Kinesis Firehose uses CurrentDeliveryStreamVersionId to avoid race conditions and conflicting merges. This is a required field, and the service updates the configuration only if the existing configuration has a version ID that matches. After the update is applied successfully, the version ID is updated, and can be retrieved using DescribeDeliveryStream. Use the new version ID to set CurrentDeliveryStreamVersionId in the next call.

See also: AWS API Documentation

Request Syntax

client.update_destination(
    DeliveryStreamName='string',
    CurrentDeliveryStreamVersionId='string',
    DestinationId='string',
    S3DestinationUpdate={
        'RoleARN': 'string',
        'BucketARN': 'string',
        'Prefix': 'string',
        'BufferingHints': {
            'SizeInMBs': 123,
            'IntervalInSeconds': 123
        },
        'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
        'EncryptionConfiguration': {
            'NoEncryptionConfig': 'NoEncryption',
            'KMSEncryptionConfig': {
                'AWSKMSKeyARN': 'string'
            }
        },
        'CloudWatchLoggingOptions': {
            'Enabled': True|False,
            'LogGroupName': 'string',
            'LogStreamName': 'string'
        }
    },
    ExtendedS3DestinationUpdate={
        'RoleARN': 'string',
        'BucketARN': 'string',
        'Prefix': 'string',
        'BufferingHints': {
            'SizeInMBs': 123,
            'IntervalInSeconds': 123
        },
        'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
        'EncryptionConfiguration': {
            'NoEncryptionConfig': 'NoEncryption',
            'KMSEncryptionConfig': {
                'AWSKMSKeyARN': 'string'
            }
        },
        'CloudWatchLoggingOptions': {
            'Enabled': True|False,
            'LogGroupName': 'string',
            'LogStreamName': 'string'
        },
        'ProcessingConfiguration': {
            'Enabled': True|False,
            'Processors': [
                {
                    'Type': 'Lambda',
                    'Parameters': [
                        {
                            'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                            'ParameterValue': 'string'
                        },
                    ]
                },
            ]
        },
        'S3BackupMode': 'Disabled'|'Enabled',
        'S3BackupUpdate': {
            'RoleARN': 'string',
            'BucketARN': 'string',
            'Prefix': 'string',
            'BufferingHints': {
                'SizeInMBs': 123,
                'IntervalInSeconds': 123
            },
            'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
            'EncryptionConfiguration': {
                'NoEncryptionConfig': 'NoEncryption',
                'KMSEncryptionConfig': {
                    'AWSKMSKeyARN': 'string'
                }
            },
            'CloudWatchLoggingOptions': {
                'Enabled': True|False,
                'LogGroupName': 'string',
                'LogStreamName': 'string'
            }
        }
    },
    RedshiftDestinationUpdate={
        'RoleARN': 'string',
        'ClusterJDBCURL': 'string',
        'CopyCommand': {
            'DataTableName': 'string',
            'DataTableColumns': 'string',
            'CopyOptions': 'string'
        },
        'Username': 'string',
        'Password': 'string',
        'RetryOptions': {
            'DurationInSeconds': 123
        },
        'S3Update': {
            'RoleARN': 'string',
            'BucketARN': 'string',
            'Prefix': 'string',
            'BufferingHints': {
                'SizeInMBs': 123,
                'IntervalInSeconds': 123
            },
            'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
            'EncryptionConfiguration': {
                'NoEncryptionConfig': 'NoEncryption',
                'KMSEncryptionConfig': {
                    'AWSKMSKeyARN': 'string'
                }
            },
            'CloudWatchLoggingOptions': {
                'Enabled': True|False,
                'LogGroupName': 'string',
                'LogStreamName': 'string'
            }
        },
        'ProcessingConfiguration': {
            'Enabled': True|False,
            'Processors': [
                {
                    'Type': 'Lambda',
                    'Parameters': [
                        {
                            'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                            'ParameterValue': 'string'
                        },
                    ]
                },
            ]
        },
        'S3BackupMode': 'Disabled'|'Enabled',
        'S3BackupUpdate': {
            'RoleARN': 'string',
            'BucketARN': 'string',
            'Prefix': 'string',
            'BufferingHints': {
                'SizeInMBs': 123,
                'IntervalInSeconds': 123
            },
            'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
            'EncryptionConfiguration': {
                'NoEncryptionConfig': 'NoEncryption',
                'KMSEncryptionConfig': {
                    'AWSKMSKeyARN': 'string'
                }
            },
            'CloudWatchLoggingOptions': {
                'Enabled': True|False,
                'LogGroupName': 'string',
                'LogStreamName': 'string'
            }
        },
        'CloudWatchLoggingOptions': {
            'Enabled': True|False,
            'LogGroupName': 'string',
            'LogStreamName': 'string'
        }
    },
    ElasticsearchDestinationUpdate={
        'RoleARN': 'string',
        'DomainARN': 'string',
        'IndexName': 'string',
        'TypeName': 'string',
        'IndexRotationPeriod': 'NoRotation'|'OneHour'|'OneDay'|'OneWeek'|'OneMonth',
        'BufferingHints': {
            'IntervalInSeconds': 123,
            'SizeInMBs': 123
        },
        'RetryOptions': {
            'DurationInSeconds': 123
        },
        'S3Update': {
            'RoleARN': 'string',
            'BucketARN': 'string',
            'Prefix': 'string',
            'BufferingHints': {
                'SizeInMBs': 123,
                'IntervalInSeconds': 123
            },
            'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
            'EncryptionConfiguration': {
                'NoEncryptionConfig': 'NoEncryption',
                'KMSEncryptionConfig': {
                    'AWSKMSKeyARN': 'string'
                }
            },
            'CloudWatchLoggingOptions': {
                'Enabled': True|False,
                'LogGroupName': 'string',
                'LogStreamName': 'string'
            }
        },
        'ProcessingConfiguration': {
            'Enabled': True|False,
            'Processors': [
                {
                    'Type': 'Lambda',
                    'Parameters': [
                        {
                            'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                            'ParameterValue': 'string'
                        },
                    ]
                },
            ]
        },
        'CloudWatchLoggingOptions': {
            'Enabled': True|False,
            'LogGroupName': 'string',
            'LogStreamName': 'string'
        }
    },
    SplunkDestinationUpdate={
        'HECEndpoint': 'string',
        'HECEndpointType': 'Raw'|'Event',
        'HECToken': 'string',
        'HECAcknowledgmentTimeoutInSeconds': 123,
        'RetryOptions': {
            'DurationInSeconds': 123
        },
        'S3BackupMode': 'FailedEventsOnly'|'AllEvents',
        'S3Update': {
            'RoleARN': 'string',
            'BucketARN': 'string',
            'Prefix': 'string',
            'BufferingHints': {
                'SizeInMBs': 123,
                'IntervalInSeconds': 123
            },
            'CompressionFormat': 'UNCOMPRESSED'|'GZIP'|'ZIP'|'Snappy',
            'EncryptionConfiguration': {
                'NoEncryptionConfig': 'NoEncryption',
                'KMSEncryptionConfig': {
                    'AWSKMSKeyARN': 'string'
                }
            },
            'CloudWatchLoggingOptions': {
                'Enabled': True|False,
                'LogGroupName': 'string',
                'LogStreamName': 'string'
            }
        },
        'ProcessingConfiguration': {
            'Enabled': True|False,
            'Processors': [
                {
                    'Type': 'Lambda',
                    'Parameters': [
                        {
                            'ParameterName': 'LambdaArn'|'NumberOfRetries'|'RoleArn'|'BufferSizeInMBs'|'BufferIntervalInSeconds',
                            'ParameterValue': 'string'
                        },
                    ]
                },
            ]
        },
        'CloudWatchLoggingOptions': {
            'Enabled': True|False,
            'LogGroupName': 'string',
            'LogStreamName': 'string'
        }
    }
)
type DeliveryStreamName

string

param DeliveryStreamName

[REQUIRED]

The name of the delivery stream.

type CurrentDeliveryStreamVersionId

string

param CurrentDeliveryStreamVersionId

[REQUIRED]

Obtain this value from the VersionId result of DeliveryStreamDescription. This value is required, and helps the service to perform conditional operations. For example, if there is an interleaving update and this value is null, then the update destination fails. After the update is successful, the VersionId value is updated. The service then performs a merge of the old configuration with the new configuration.

type DestinationId

string

param DestinationId

[REQUIRED]

The ID of the destination.

type S3DestinationUpdate

dict

param S3DestinationUpdate

[Deprecated] Describes an update for a destination in Amazon S3.

  • RoleARN (string) --

    The ARN of the AWS credentials.

  • BucketARN (string) --

    The ARN of the S3 bucket.

  • Prefix (string) --

    The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

  • BufferingHints (dict) --

    The buffering option. If no value is specified, BufferingHints object default values are used.

    • SizeInMBs (integer) --

      Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

      We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

    • IntervalInSeconds (integer) --

      Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

  • CompressionFormat (string) --

    The compression format. If no value is specified, the default is UNCOMPRESSED .

    The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

  • EncryptionConfiguration (dict) --

    The encryption configuration. If no value is specified, the default is no encryption.

    • NoEncryptionConfig (string) --

      Specifically override existing encryption information to ensure that no encryption is used.

    • KMSEncryptionConfig (dict) --

      The encryption key.

      • AWSKMSKeyARN (string) -- [REQUIRED]

        The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

  • CloudWatchLoggingOptions (dict) --

    The CloudWatch logging options for your delivery stream.

    • Enabled (boolean) --

      Enables or disables CloudWatch logging.

    • LogGroupName (string) --

      The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

    • LogStreamName (string) --

      The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

type ExtendedS3DestinationUpdate

dict

param ExtendedS3DestinationUpdate

Describes an update for a destination in Amazon S3.

  • RoleARN (string) --

    The ARN of the AWS credentials.

  • BucketARN (string) --

    The ARN of the S3 bucket.

  • Prefix (string) --

    The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

  • BufferingHints (dict) --

    The buffering option.

    • SizeInMBs (integer) --

      Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

      We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

    • IntervalInSeconds (integer) --

      Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

  • CompressionFormat (string) --

    The compression format. If no value is specified, the default is UNCOMPRESSED .

  • EncryptionConfiguration (dict) --

    The encryption configuration. If no value is specified, the default is no encryption.

    • NoEncryptionConfig (string) --

      Specifically override existing encryption information to ensure that no encryption is used.

    • KMSEncryptionConfig (dict) --

      The encryption key.

      • AWSKMSKeyARN (string) -- [REQUIRED]

        The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

  • CloudWatchLoggingOptions (dict) --

    The CloudWatch logging options for your delivery stream.

    • Enabled (boolean) --

      Enables or disables CloudWatch logging.

    • LogGroupName (string) --

      The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

    • LogStreamName (string) --

      The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

  • ProcessingConfiguration (dict) --

    The data processing configuration.

    • Enabled (boolean) --

      Enables or disables data processing.

    • Processors (list) --

      The data processors.

      • (dict) --

        Describes a data processor.

        • Type (string) -- [REQUIRED]

          The type of processor.

        • Parameters (list) --

          The processor parameters.

          • (dict) --

            Describes the processor parameter.

            • ParameterName (string) -- [REQUIRED]

              The name of the parameter.

            • ParameterValue (string) -- [REQUIRED]

              The parameter value.

  • S3BackupMode (string) --

    Enables or disables Amazon S3 backup mode.

  • S3BackupUpdate (dict) --

    The Amazon S3 destination for backup.

    • RoleARN (string) --

      The ARN of the AWS credentials.

    • BucketARN (string) --

      The ARN of the S3 bucket.

    • Prefix (string) --

      The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

    • BufferingHints (dict) --

      The buffering option. If no value is specified, BufferingHints object default values are used.

      • SizeInMBs (integer) --

        Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

        We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

      • IntervalInSeconds (integer) --

        Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

    • CompressionFormat (string) --

      The compression format. If no value is specified, the default is UNCOMPRESSED .

      The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

    • EncryptionConfiguration (dict) --

      The encryption configuration. If no value is specified, the default is no encryption.

      • NoEncryptionConfig (string) --

        Specifically override existing encryption information to ensure that no encryption is used.

      • KMSEncryptionConfig (dict) --

        The encryption key.

        • AWSKMSKeyARN (string) -- [REQUIRED]

          The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

    • CloudWatchLoggingOptions (dict) --

      The CloudWatch logging options for your delivery stream.

      • Enabled (boolean) --

        Enables or disables CloudWatch logging.

      • LogGroupName (string) --

        The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

      • LogStreamName (string) --

        The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

type RedshiftDestinationUpdate

dict

param RedshiftDestinationUpdate

Describes an update for a destination in Amazon Redshift.

  • RoleARN (string) --

    The ARN of the AWS credentials.

  • ClusterJDBCURL (string) --

    The database connection string.

  • CopyCommand (dict) --

    The COPY command.

    • DataTableName (string) -- [REQUIRED]

      The name of the target table. The table must already exist in the database.

    • DataTableColumns (string) --

      A comma-separated list of column names.

    • CopyOptions (string) --

      Optional parameters to use with the Amazon Redshift COPY command. For more information, see the "Optional Parameters" section of Amazon Redshift COPY command. Some possible examples that would apply to Kinesis Firehose are as follows:

      delimiter '\t' lzop; - fields are delimited with "t" (TAB character) and compressed using lzop.

      delimiter '|' - fields are delimited with "|" (this is the default delimiter).

      delimiter '|' escape - the delimiter should be escaped.

      fixedwidth 'venueid:3,venuename:25,venuecity:12,venuestate:2,venueseats:6' - fields are fixed width in the source, with each width specified after every column in the table.

      JSON 's3://mybucket/jsonpaths.txt' - data is in JSON format, and the path specified is the format of the data.

      For more examples, see Amazon Redshift COPY command examples.

  • Username (string) --

    The name of the user.

  • Password (string) --

    The user password.

  • RetryOptions (dict) --

    The retry behavior in case Kinesis Firehose is unable to deliver documents to Amazon Redshift. Default value is 3600 (60 minutes).

    • DurationInSeconds (integer) --

      The length of time during which Kinesis Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Kinesis Firehose does not retry if the value of DurationInSeconds is 0 (zero) or if the first delivery attempt takes longer than the current value.

  • S3Update (dict) --

    The Amazon S3 destination.

    The compression formats SNAPPY or ZIP cannot be specified in RedshiftDestinationUpdate.S3Update because the Amazon Redshift COPY operation that reads from the S3 bucket doesn't support these compression formats.

    • RoleARN (string) --

      The ARN of the AWS credentials.

    • BucketARN (string) --

      The ARN of the S3 bucket.

    • Prefix (string) --

      The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

    • BufferingHints (dict) --

      The buffering option. If no value is specified, BufferingHints object default values are used.

      • SizeInMBs (integer) --

        Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

        We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

      • IntervalInSeconds (integer) --

        Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

    • CompressionFormat (string) --

      The compression format. If no value is specified, the default is UNCOMPRESSED .

      The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

    • EncryptionConfiguration (dict) --

      The encryption configuration. If no value is specified, the default is no encryption.

      • NoEncryptionConfig (string) --

        Specifically override existing encryption information to ensure that no encryption is used.

      • KMSEncryptionConfig (dict) --

        The encryption key.

        • AWSKMSKeyARN (string) -- [REQUIRED]

          The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

    • CloudWatchLoggingOptions (dict) --

      The CloudWatch logging options for your delivery stream.

      • Enabled (boolean) --

        Enables or disables CloudWatch logging.

      • LogGroupName (string) --

        The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

      • LogStreamName (string) --

        The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

  • ProcessingConfiguration (dict) --

    The data processing configuration.

    • Enabled (boolean) --

      Enables or disables data processing.

    • Processors (list) --

      The data processors.

      • (dict) --

        Describes a data processor.

        • Type (string) -- [REQUIRED]

          The type of processor.

        • Parameters (list) --

          The processor parameters.

          • (dict) --

            Describes the processor parameter.

            • ParameterName (string) -- [REQUIRED]

              The name of the parameter.

            • ParameterValue (string) -- [REQUIRED]

              The parameter value.

  • S3BackupMode (string) --

    The Amazon S3 backup mode.

  • S3BackupUpdate (dict) --

    The Amazon S3 destination for backup.

    • RoleARN (string) --

      The ARN of the AWS credentials.

    • BucketARN (string) --

      The ARN of the S3 bucket.

    • Prefix (string) --

      The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

    • BufferingHints (dict) --

      The buffering option. If no value is specified, BufferingHints object default values are used.

      • SizeInMBs (integer) --

        Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

        We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

      • IntervalInSeconds (integer) --

        Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

    • CompressionFormat (string) --

      The compression format. If no value is specified, the default is UNCOMPRESSED .

      The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

    • EncryptionConfiguration (dict) --

      The encryption configuration. If no value is specified, the default is no encryption.

      • NoEncryptionConfig (string) --

        Specifically override existing encryption information to ensure that no encryption is used.

      • KMSEncryptionConfig (dict) --

        The encryption key.

        • AWSKMSKeyARN (string) -- [REQUIRED]

          The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

    • CloudWatchLoggingOptions (dict) --

      The CloudWatch logging options for your delivery stream.

      • Enabled (boolean) --

        Enables or disables CloudWatch logging.

      • LogGroupName (string) --

        The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

      • LogStreamName (string) --

        The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

  • CloudWatchLoggingOptions (dict) --

    The CloudWatch logging options for your delivery stream.

    • Enabled (boolean) --

      Enables or disables CloudWatch logging.

    • LogGroupName (string) --

      The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

    • LogStreamName (string) --

      The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

type ElasticsearchDestinationUpdate

dict

param ElasticsearchDestinationUpdate

Describes an update for a destination in Amazon ES.

  • RoleARN (string) --

    The ARN of the IAM role to be assumed by Kinesis Firehose for calling the Amazon ES Configuration API and for indexing documents. For more information, see Amazon S3 Bucket Access.

  • DomainARN (string) --

    The ARN of the Amazon ES domain. The IAM role must have permissions for DescribeElasticsearchDomain , DescribeElasticsearchDomains , and DescribeElasticsearchDomainConfig after assuming the IAM role specified in RoleARN .

  • IndexName (string) --

    The Elasticsearch index name.

  • TypeName (string) --

    The Elasticsearch type name.

  • IndexRotationPeriod (string) --

    The Elasticsearch index rotation period. Index rotation appends a time stamp to IndexName to facilitate the expiration of old data. For more information, see Index Rotation for Amazon Elasticsearch Service Destination. Default value is OneDay .

  • BufferingHints (dict) --

    The buffering options. If no value is specified, ElasticsearchBufferingHints object default values are used.

    • IntervalInSeconds (integer) --

      Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300 (5 minutes).

    • SizeInMBs (integer) --

      Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

      We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

  • RetryOptions (dict) --

    The retry behavior in case Kinesis Firehose is unable to deliver documents to Amazon ES. The default value is 300 (5 minutes).

    • DurationInSeconds (integer) --

      After an initial failure to deliver to Amazon ES, the total amount of time during which Kinesis Firehose re-attempts delivery (including the first attempt). After this time has elapsed, the failed documents are written to Amazon S3. Default value is 300 seconds (5 minutes). A value of 0 (zero) results in no retries.

  • S3Update (dict) --

    The Amazon S3 destination.

    • RoleARN (string) --

      The ARN of the AWS credentials.

    • BucketARN (string) --

      The ARN of the S3 bucket.

    • Prefix (string) --

      The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

    • BufferingHints (dict) --

      The buffering option. If no value is specified, BufferingHints object default values are used.

      • SizeInMBs (integer) --

        Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

        We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

      • IntervalInSeconds (integer) --

        Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

    • CompressionFormat (string) --

      The compression format. If no value is specified, the default is UNCOMPRESSED .

      The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

    • EncryptionConfiguration (dict) --

      The encryption configuration. If no value is specified, the default is no encryption.

      • NoEncryptionConfig (string) --

        Specifically override existing encryption information to ensure that no encryption is used.

      • KMSEncryptionConfig (dict) --

        The encryption key.

        • AWSKMSKeyARN (string) -- [REQUIRED]

          The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

    • CloudWatchLoggingOptions (dict) --

      The CloudWatch logging options for your delivery stream.

      • Enabled (boolean) --

        Enables or disables CloudWatch logging.

      • LogGroupName (string) --

        The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

      • LogStreamName (string) --

        The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

  • ProcessingConfiguration (dict) --

    The data processing configuration.

    • Enabled (boolean) --

      Enables or disables data processing.

    • Processors (list) --

      The data processors.

      • (dict) --

        Describes a data processor.

        • Type (string) -- [REQUIRED]

          The type of processor.

        • Parameters (list) --

          The processor parameters.

          • (dict) --

            Describes the processor parameter.

            • ParameterName (string) -- [REQUIRED]

              The name of the parameter.

            • ParameterValue (string) -- [REQUIRED]

              The parameter value.

  • CloudWatchLoggingOptions (dict) --

    The CloudWatch logging options for your delivery stream.

    • Enabled (boolean) --

      Enables or disables CloudWatch logging.

    • LogGroupName (string) --

      The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

    • LogStreamName (string) --

      The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

type SplunkDestinationUpdate

dict

param SplunkDestinationUpdate

Describes an update for a destination in Splunk.

  • HECEndpoint (string) --

    The HTTP Event Collector (HEC) endpoint to which Kinesis Firehose sends your data.

  • HECEndpointType (string) --

    This type can be either "Raw" or "Event".

  • HECToken (string) --

    This is a GUID you obtain from your Splunk cluster when you create a new HEC endpoint.

  • HECAcknowledgmentTimeoutInSeconds (integer) --

    The amount of time that Kinesis Firehose waits to receive an acknowledgment from Splunk after it sends it data. At the end of the timeout period Kinesis Firehose either tries to send the data again or considers it an error, based on your retry settings.

  • RetryOptions (dict) --

    The retry behavior in case Kinesis Firehose is unable to deliver data to Splunk or if it doesn't receive an acknowledgment of receipt from Splunk.

    • DurationInSeconds (integer) --

      The total amount of time that Kinesis Firehose spends on retries. This duration starts after the initial attempt to send data to Splunk fails and doesn't include the periods during which Kinesis Firehose waits for acknowledgment from Splunk after each attempt.

  • S3BackupMode (string) --

    Defines how documents should be delivered to Amazon S3. When set to FailedDocumentsOnly , Kinesis Firehose writes any data that could not be indexed to the configured Amazon S3 destination. When set to AllDocuments , Kinesis Firehose delivers all incoming records to Amazon S3, and also writes failed documents to Amazon S3. Default value is FailedDocumentsOnly .

  • S3Update (dict) --

    Your update to the configuration of the backup Amazon S3 location.

    • RoleARN (string) --

      The ARN of the AWS credentials.

    • BucketARN (string) --

      The ARN of the S3 bucket.

    • Prefix (string) --

      The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Firehose Developer Guide .

    • BufferingHints (dict) --

      The buffering option. If no value is specified, BufferingHints object default values are used.

      • SizeInMBs (integer) --

        Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.

        We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

      • IntervalInSeconds (integer) --

        Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.

    • CompressionFormat (string) --

      The compression format. If no value is specified, the default is UNCOMPRESSED .

      The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

    • EncryptionConfiguration (dict) --

      The encryption configuration. If no value is specified, the default is no encryption.

      • NoEncryptionConfig (string) --

        Specifically override existing encryption information to ensure that no encryption is used.

      • KMSEncryptionConfig (dict) --

        The encryption key.

        • AWSKMSKeyARN (string) -- [REQUIRED]

          The ARN of the encryption key. Must belong to the same region as the destination Amazon S3 bucket.

    • CloudWatchLoggingOptions (dict) --

      The CloudWatch logging options for your delivery stream.

      • Enabled (boolean) --

        Enables or disables CloudWatch logging.

      • LogGroupName (string) --

        The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

      • LogStreamName (string) --

        The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

  • ProcessingConfiguration (dict) --

    The data processing configuration.

    • Enabled (boolean) --

      Enables or disables data processing.

    • Processors (list) --

      The data processors.

      • (dict) --

        Describes a data processor.

        • Type (string) -- [REQUIRED]

          The type of processor.

        • Parameters (list) --

          The processor parameters.

          • (dict) --

            Describes the processor parameter.

            • ParameterName (string) -- [REQUIRED]

              The name of the parameter.

            • ParameterValue (string) -- [REQUIRED]

              The parameter value.

  • CloudWatchLoggingOptions (dict) --

    The CloudWatch logging options for your delivery stream.

    • Enabled (boolean) --

      Enables or disables CloudWatch logging.

    • LogGroupName (string) --

      The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

    • LogStreamName (string) --

      The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --