Amazon Kinesis Firehose

2017/08/21 - Amazon Kinesis Firehose - 1 new 3 updated api methods

Changes  This change will allow customers to attach a Firehose delivery stream to an existing Kinesis stream directly. You no longer need a forwarder to move data from a Kinesis stream to a Firehose delivery stream. You can now run your streaming applications on your Kinesis stream and easily attach a Firehose delivery stream to it for data delivery to S3, Redshift, or Elasticsearch concurrently.

GetKinesisStream (new) Link ¶

See also: AWS API Documentation

Request Syntax

client.get_kinesis_stream(
    DeliveryStreamARN='string'
)
type DeliveryStreamARN

string

param DeliveryStreamARN

[REQUIRED]

rtype

dict

returns

Response Syntax

{
    'KinesisStreamARN': 'string',
    'CredentialsForReadingKinesisStream': {
        'AccessKeyId': 'string',
        'SecretAccessKey': 'string',
        'SessionToken': 'string',
        'Expiration': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) --

    • KinesisStreamARN (string) --

    • CredentialsForReadingKinesisStream (dict) --

      • AccessKeyId (string) --

      • SecretAccessKey (string) --

      • SessionToken (string) --

      • Expiration (datetime) --

CreateDeliveryStream (updated) Link ¶
Changes (request)
{'DeliveryStreamType': 'DirectPut | KinesisStreamAsSource',
 'KinesisStreamSourceConfiguration': {'KinesisStreamARN': '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',
                            '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',
                            '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',
                            '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.

rtype

dict

returns

Response Syntax

{
    'DeliveryStreamARN': 'string'
}

Response Structure

  • (dict) --

    • DeliveryStreamARN (string) --

      The ARN of the delivery stream.

DescribeDeliveryStream (updated) Link ¶
Changes (response)
{'DeliveryStreamDescription': {'DeliveryStreamType': 'DirectPut | '
                                                     'KinesisStreamAsSource',
                               'Source': {'KinesisStreamSourceDescription': {'DeliveryStartTimestamp': 'timestamp',
                                                                             'KinesisStreamARN': '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',
                                        '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',
                                        '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',
                                        '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.

      • HasMoreDestinations (boolean) --

        Indicates whether there are more destinations available to list.

ListDeliveryStreams (updated) Link ¶
Changes (request)
{'DeliveryStreamType': 'DirectPut | KinesisStreamAsSource'}

Lists your delivery streams.

The number of delivery streams might be too large to return using a single call to ListDeliveryStreams. You can limit the number of delivery streams returned, using the Limit parameter. To determine whether there are more delivery streams to list, check the value of HasMoreDeliveryStreams in the output. If there are more delivery streams to list, you can request them by specifying the name of the last delivery stream returned in the call in the ExclusiveStartDeliveryStreamName parameter of a subsequent call.

See also: AWS API Documentation

Request Syntax

client.list_delivery_streams(
    Limit=123,
    DeliveryStreamType='DirectPut'|'KinesisStreamAsSource',
    ExclusiveStartDeliveryStreamName='string'
)
type Limit

integer

param Limit

The maximum number of delivery streams to list.

type DeliveryStreamType

string

param DeliveryStreamType

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.

This parameter is optional. If this parameter is omitted, delivery streams of all types are returned.

type ExclusiveStartDeliveryStreamName

string

param ExclusiveStartDeliveryStreamName

The name of the delivery stream to start the list with.

rtype

dict

returns

Response Syntax

{
    'DeliveryStreamNames': [
        'string',
    ],
    'HasMoreDeliveryStreams': True|False
}

Response Structure

  • (dict) --

    • DeliveryStreamNames (list) --

      The names of the delivery streams.

      • (string) --

    • HasMoreDeliveryStreams (boolean) --

      Indicates whether there are more delivery streams available to list.