Amazon Kinesis Firehose

2016/04/18 - Amazon Kinesis Firehose - 3 updated api methods

CreateDeliveryStream (updated) Link ¶
Changes (request)
{'ElasticsearchDestinationConfiguration': {'BufferingHints': {'IntervalInSeconds': 'integer',
                                                              'SizeInMBs': 'integer'},
                                           'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                        'LogGroupName': 'string',
                                                                        'LogStreamName': 'string'},
                                           'DomainARN': 'string',
                                           'IndexName': 'string',
                                           'IndexRotationPeriod': 'NoRotation '
                                                                  '| OneHour | '
                                                                  'OneDay | '
                                                                  'OneWeek | '
                                                                  'OneMonth',
                                           'RetryOptions': {'DurationInSeconds': 'integer'},
                                           'RoleARN': 'string',
                                           'S3BackupMode': 'FailedDocumentsOnly '
                                                           '| AllDocuments',
                                           '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'},
                                           'TypeName': 'string'},
 'RedshiftDestinationConfiguration': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                   'LogGroupName': 'string',
                                                                   'LogStreamName': 'string'},
                                      'S3Configuration': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                                       'LogGroupName': 'string',
                                                                                       'LogStreamName': 'string'}}},
 'S3DestinationConfiguration': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                             'LogGroupName': 'string',
                                                             'LogStreamName': 'string'}}}

Creates a delivery stream.

CreateDeliveryStream 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.

The name of a delivery stream identifies it. You can't have two delivery streams with the same name in the same region. Two delivery streams in different AWS accounts or different regions in the same AWS account can have the same name.

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

A delivery stream can only be configured with a single destination, Amazon S3 or Amazon Redshift. For correct CreateDeliveryStream request syntax, specify only one destination configuration parameter: either ElasticsearchDestinationConfiguration , RedshiftDestinationConfiguration or S3DestinationConfiguration

As part of S3DestinationConfiguration , optional values BufferingHints , EncryptionConfiguration , and CompressionFormat can be provided. By default, if no BufferingHints value is provided, 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 RedshiftDestinationConfiguration :

  • An Amazon Redshift destination requires an S3 bucket as intermediate location, as 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 element.

  • 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 the username and password provided is used exclusively for Firehose purposes, and that the permissions for the account are restricted for Amazon Redshift INSERT permissions.

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

Request Syntax

client.create_delivery_stream(
    DeliveryStreamName='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'
        }
    },
    RedshiftDestinationConfiguration={
        'RoleARN': 'string',
        'ClusterJDBCURL': 'string',
        'CopyCommand': {
            'DataTableName': 'string',
            'DataTableColumns': 'string',
            'CopyOptions': 'string'
        },
        'Username': 'string',
        'Password': 'string',
        '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'
            }
        },
        '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'
            }
        },
        'CloudWatchLoggingOptions': {
            'Enabled': True|False,
            'LogGroupName': 'string',
            'LogStreamName': 'string'
        }
    }
)
type DeliveryStreamName

string

param DeliveryStreamName

[REQUIRED]

The name of the delivery stream.

type S3DestinationConfiguration

dict

param S3DestinationConfiguration

The destination in Amazon S3. This value must be specified if ElasticsearchDestinationConfiguration or RedshiftDestinationConfiguration is specified (see restrictions listed above).

  • 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. Note that 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 guide-fh-dev.

  • 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 SizeInMBs 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 set SizeInMBs to 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 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) --

    Describes 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 Enabled is true.

    • LogStreamName (string) --

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

type RedshiftDestinationConfiguration

dict

param RedshiftDestinationConfiguration

The destination in Amazon Redshift. This value cannot be specified if Amazon S3 or Amazon Elasticsearch is the desired destination (see restrictions listed above).

  • 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 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.

  • S3Configuration (dict) -- [REQUIRED]

    The S3 configuration for the intermediate 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. Note that 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 guide-fh-dev.

    • 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 SizeInMBs 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 set SizeInMBs to 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 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) --

      Describes 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 Enabled is true.

      • LogStreamName (string) --

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

  • CloudWatchLoggingOptions (dict) --

    Describes 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 Enabled is true.

    • LogStreamName (string) --

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

type ElasticsearchDestinationConfiguration

dict

param ElasticsearchDestinationConfiguration

The destination in Amazon ES. This value cannot be specified if Amazon S3 or Amazon Redshift is the desired destination (see restrictions listed above).

  • RoleARN (string) -- [REQUIRED]

    The ARN of the IAM role to be assumed by 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 permission for DescribeElasticsearchDomain , DescribeElasticsearchDomains , and DescribeElasticsearchDomainConfig after assuming 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 timestamp to the IndexName to facilitate expiration of old data. For more information, see Index Rotation for Amazon Elasticsearch Service Destination. Default value is OneDay .

  • BufferingHints (dict) --

    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 SizeInMBs 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, set SizeInMBs to be 10 MB or higher.

  • RetryOptions (dict) --

    Configures retry behavior in the event that Firehose is unable to deliver documents to Amazon ES. Default value is 300 (5 minutes).

    • DurationInSeconds (integer) --

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

  • S3BackupMode (string) --

    Defines how documents should be delivered to Amazon S3. When set to FailedDocumentsOnly, 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, 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]

    Describes the configuration of a destination 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. Note that 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 guide-fh-dev.

    • 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 SizeInMBs 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 set SizeInMBs to 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 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) --

      Describes 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 Enabled is true.

      • LogStreamName (string) --

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

  • CloudWatchLoggingOptions (dict) --

    Describes 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 Enabled is true.

    • LogStreamName (string) --

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

rtype

dict

returns

Response Syntax

{
    'DeliveryStreamARN': 'string'
}

Response Structure

  • (dict) --

    Contains the output of CreateDeliveryStream.

    • DeliveryStreamARN (string) --

      The ARN of the delivery stream.

DescribeDeliveryStream (updated) Link ¶
Changes (response)
{'DeliveryStreamDescription': {'Destinations': {'ElasticsearchDestinationDescription': {'BufferingHints': {'IntervalInSeconds': 'integer',
                                                                                                           'SizeInMBs': 'integer'},
                                                                                        'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                                                                     'LogGroupName': 'string',
                                                                                                                     'LogStreamName': 'string'},
                                                                                        'DomainARN': 'string',
                                                                                        'IndexName': 'string',
                                                                                        'IndexRotationPeriod': 'NoRotation '
                                                                                                               '| '
                                                                                                               'OneHour '
                                                                                                               '| '
                                                                                                               'OneDay '
                                                                                                               '| '
                                                                                                               'OneWeek '
                                                                                                               '| '
                                                                                                               'OneMonth',
                                                                                        'RetryOptions': {'DurationInSeconds': 'integer'},
                                                                                        'RoleARN': 'string',
                                                                                        'S3BackupMode': 'FailedDocumentsOnly '
                                                                                                        '| '
                                                                                                        'AllDocuments',
                                                                                        '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'},
                                                                                        'TypeName': 'string'},
                                                'RedshiftDestinationDescription': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                                                                'LogGroupName': 'string',
                                                                                                                'LogStreamName': 'string'},
                                                                                   'S3DestinationDescription': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                                                                                             'LogGroupName': 'string',
                                                                                                                                             'LogStreamName': 'string'}}},
                                                'S3DestinationDescription': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                                                          'LogGroupName': 'string',
                                                                                                          'LogStreamName': '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.

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

Specifies the destination ID to start returning the destination information. Currently Firehose supports one destination per delivery stream.

rtype

dict

returns

Response Syntax

{
    'DeliveryStreamDescription': {
        'DeliveryStreamName': 'string',
        'DeliveryStreamARN': 'string',
        'DeliveryStreamStatus': 'CREATING'|'DELETING'|'ACTIVE',
        'VersionId': 'string',
        'CreateTimestamp': datetime(2015, 1, 1),
        'LastUpdateTimestamp': 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'
                    }
                },
                'RedshiftDestinationDescription': {
                    'RoleARN': 'string',
                    'ClusterJDBCURL': 'string',
                    'CopyCommand': {
                        'DataTableName': 'string',
                        'DataTableColumns': 'string',
                        'CopyOptions': 'string'
                    },
                    'Username': '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'
                        }
                    },
                    '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'
                        }
                    },
                    'CloudWatchLoggingOptions': {
                        'Enabled': True|False,
                        'LogGroupName': 'string',
                        'LogStreamName': 'string'
                    }
                }
            },
        ],
        'HasMoreDestinations': True|False
    }
}

Response Structure

  • (dict) --

    Contains the output of DescribeDeliveryStream.

    • 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.

      • VersionId (string) --

        Used when calling the UpdateDestination operation. Each time the destination is updated for the delivery stream, the VersionId is changed, and the current VersionId 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.

      • Destinations (list) --

        The destinations.

        • (dict) --

          Describes the destination for a delivery stream.

          • DestinationId (string) --

            The ID of the destination.

          • 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. Note that 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 guide-fh-dev.

            • 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 SizeInMBs 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 set SizeInMBs to 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 NOCOMPRESSION .

            • EncryptionConfiguration (dict) --

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

              • NoEncryptionConfig (string) --

                Specifically override existing encryption information to ensure 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) --

              Describes 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 Enabled is true.

              • LogStreamName (string) --

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

          • 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 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.

            • 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. Note that 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 guide-fh-dev.

              • 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 SizeInMBs 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 set SizeInMBs to 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 NOCOMPRESSION .

              • EncryptionConfiguration (dict) --

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

                • NoEncryptionConfig (string) --

                  Specifically override existing encryption information to ensure 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) --

                Describes 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 Enabled is true.

                • LogStreamName (string) --

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

            • CloudWatchLoggingOptions (dict) --

              Describes 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 Enabled is true.

              • LogStreamName (string) --

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

          • 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) --

              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 SizeInMBs 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, set SizeInMBs to be 10 MB or higher.

            • RetryOptions (dict) --

              Elasticsearch retry options.

              • DurationInSeconds (integer) --

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

            • S3BackupMode (string) --

              Amazon S3 backup mode.

            • S3DestinationDescription (dict) --

              Describes 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. Note that 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 guide-fh-dev.

              • 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 SizeInMBs 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 set SizeInMBs to 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 NOCOMPRESSION .

              • EncryptionConfiguration (dict) --

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

                • NoEncryptionConfig (string) --

                  Specifically override existing encryption information to ensure 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) --

                Describes 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 Enabled is true.

                • LogStreamName (string) --

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

            • CloudWatchLoggingOptions (dict) --

              CloudWatch logging options.

              • Enabled (boolean) --

                Enables or disables CloudWatch logging.

              • LogGroupName (string) --

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

              • LogStreamName (string) --

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

      • HasMoreDestinations (boolean) --

        Indicates whether there are more destinations available to list.

UpdateDestination (updated) Link ¶
Changes (request)
{'ElasticsearchDestinationUpdate': {'BufferingHints': {'IntervalInSeconds': 'integer',
                                                       'SizeInMBs': 'integer'},
                                    'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                 'LogGroupName': 'string',
                                                                 'LogStreamName': 'string'},
                                    'DomainARN': 'string',
                                    'IndexName': 'string',
                                    'IndexRotationPeriod': 'NoRotation | '
                                                           'OneHour | OneDay | '
                                                           'OneWeek | OneMonth',
                                    'RetryOptions': {'DurationInSeconds': 'integer'},
                                    'RoleARN': 'string',
                                    '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'},
                                    'TypeName': 'string'},
 'RedshiftDestinationUpdate': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                            'LogGroupName': 'string',
                                                            'LogStreamName': 'string'},
                               'S3Update': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                                         'LogGroupName': 'string',
                                                                         'LogStreamName': 'string'}}},
 'S3DestinationUpdate': {'CloudWatchLoggingOptions': {'Enabled': 'boolean',
                                                      'LogGroupName': 'string',
                                                      'LogStreamName': 'string'}}}

Updates the specified destination of the specified delivery stream. Note: Switching between Elasticsearch and other services is not supported. For Elasticsearch destination, you can only update an existing Elasticsearch destination with this operation.

This operation can be used to change the destination type (for example, to replace the Amazon S3 destination with Amazon Redshift) or change the parameters associated with a given destination (for example, to change the bucket name of the Amazon S3 destination). The update may 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 normally effective within a few minutes.

If the destination type is the same, Firehose merges the configuration parameters specified in the UpdateDestination request with the destination configuration that already exists on the delivery stream. If any of the parameters are not specified in the update request, then the existing configuration parameters 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, Firehose does not merge any parameters. In this case, all parameters must be specified.

Firehose uses the CurrentDeliveryStreamVersionId to avoid race conditions and conflicting merges. This is a required field in every request and the service only updates the configuration if the existing configuration matches the VersionId . After the update is applied successfully, the VersionId is updated, which can be retrieved with the DescribeDeliveryStream operation. The new VersionId should be uses to set CurrentDeliveryStreamVersionId in the next UpdateDestination operation.

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'
        }
    },
    RedshiftDestinationUpdate={
        'RoleARN': 'string',
        'ClusterJDBCURL': 'string',
        'CopyCommand': {
            'DataTableName': 'string',
            'DataTableColumns': 'string',
            'CopyOptions': 'string'
        },
        'Username': 'string',
        'Password': 'string',
        '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'
            }
        },
        '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'
            }
        },
        '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 the DeliveryStreamDescription operation. This value is required, and helps the service to perform conditional operations. For example, if there is a 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

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. Note that 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 guide-fh-dev.

  • 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 SizeInMBs 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 set SizeInMBs to 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 NOCOMPRESSION .

    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 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) --

    Describes 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 Enabled is true.

    • LogStreamName (string) --

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

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 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.

  • 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. Note that 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 guide-fh-dev.

    • 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 SizeInMBs 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 set SizeInMBs to 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 NOCOMPRESSION .

      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 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) --

      Describes 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 Enabled is true.

      • LogStreamName (string) --

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

  • CloudWatchLoggingOptions (dict) --

    Describes 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 Enabled is true.

    • LogStreamName (string) --

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

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 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 permission for DescribeElasticsearchDomain, DescribeElasticsearchDomains , and DescribeElasticsearchDomainConfig after assuming RoleARN .

  • IndexName (string) --

    The Elasticsearch index name.

  • TypeName (string) --

    The Elasticsearch type name.

  • IndexRotationPeriod (string) --

    The Elasticsearch index rotation period. Index rotation appends a timestamp to the 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) --

    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 SizeInMBs 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, set SizeInMBs to be 10 MB or higher.

  • RetryOptions (dict) --

    Configures retry behavior in the event that Firehose is unable to deliver documents to Amazon ES. Default value is 300 (5 minutes).

    • DurationInSeconds (integer) --

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

  • S3Update (dict) --

    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. Note that 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 guide-fh-dev.

    • 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 SizeInMBs 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 set SizeInMBs to 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 NOCOMPRESSION .

      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 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) --

      Describes 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 Enabled is true.

      • LogStreamName (string) --

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

  • CloudWatchLoggingOptions (dict) --

    Describes 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 Enabled is true.

    • LogStreamName (string) --

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

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

    Contains the output of UpdateDestination.