createDeliveryStream method
- required String deliveryStreamName,
- DeliveryStreamEncryptionConfigurationInput? deliveryStreamEncryptionConfigurationInput,
- DeliveryStreamType? deliveryStreamType,
- ElasticsearchDestinationConfiguration? elasticsearchDestinationConfiguration,
- ExtendedS3DestinationConfiguration? extendedS3DestinationConfiguration,
- HttpEndpointDestinationConfiguration? httpEndpointDestinationConfiguration,
- KinesisStreamSourceConfiguration? kinesisStreamSourceConfiguration,
- RedshiftDestinationConfiguration? redshiftDestinationConfiguration,
- S3DestinationConfiguration? s3DestinationConfiguration,
- SplunkDestinationConfiguration? splunkDestinationConfiguration,
- List<
Tag> ? tags,
Creates a Kinesis Data Firehose delivery stream.
By default, you can create up to 50 delivery streams per AWS 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. If the delivery stream creation fails, the status transitions to
CREATING_FAILED
. 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.
If the status of a delivery stream is CREATING_FAILED
, this
status doesn't change, and you can't invoke
CreateDeliveryStream
again on it. However, you can invoke the
DeleteDeliveryStream operation to delete it.
A Kinesis Data 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 data stream as input, set the
DeliveryStreamType
parameter to
KinesisStreamAsSource
, and provide the Kinesis stream Amazon
Resource Name (ARN) and role ARN in the
KinesisStreamSourceConfiguration
parameter.
To create a delivery stream with server-side encryption (SSE) enabled, include DeliveryStreamEncryptionConfigurationInput in your request. This is optional. You can also invoke StartDeliveryStreamEncryption to turn on SSE for an existing delivery stream that doesn't have SSE enabled.
A delivery stream is configured with a single destination: Amazon S3,
Amazon ES, Amazon Redshift, or Splunk. You must specify only one of the
following destination configuration parameters:
ExtendedS3DestinationConfiguration
,
S3DestinationConfiguration
,
ElasticsearchDestinationConfiguration
,
RedshiftDestinationConfiguration
, or
SplunkDestinationConfiguration
.
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
Data Firehose buffers data up to 5 MB or for 5 minutes, whichever
condition is satisfied first. BufferingHints
is a hint, so
there are some cases where the service cannot adhere to these conditions
strictly. For example, record boundaries might be 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. Kinesis Data Firehose first delivers data to Amazon S3 and then
uses
COPY
syntax to load data into an Amazon Redshift table. This is specified in theRedshiftDestinationConfiguration.S3Configuration
parameter. -
The compression formats
SNAPPY
orZIP
cannot be specified inRedshiftDestinationConfiguration.S3Configuration
because the Amazon RedshiftCOPY
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 Data Firehose, and that the permissions for the
account are restricted for Amazon Redshift
INSERT
permissions.
May throw InvalidArgumentException. May throw LimitExceededException. May throw ResourceInUseException. May throw InvalidKMSResourceException.
Parameter deliveryStreamName
:
The name of the delivery stream. This name must be unique per AWS account
in the same AWS Region. If the delivery streams are in different accounts
or different Regions, you can have multiple delivery streams with the same
name.
Parameter deliveryStreamEncryptionConfigurationInput
:
Used to specify the type and Amazon Resource Name (ARN) of the KMS key
needed for Server-Side Encryption (SSE).
Parameter 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 data stream as a source.
Parameter elasticsearchDestinationConfiguration
:
The destination in Amazon ES. You can specify only one destination.
Parameter extendedS3DestinationConfiguration
:
The destination in Amazon S3. You can specify only one destination.
Parameter httpEndpointDestinationConfiguration
:
Enables configuring Kinesis Firehose to deliver data to any HTTP endpoint
destination. You can specify only one destination.
Parameter kinesisStreamSourceConfiguration
:
When a Kinesis data stream is used as the source for the delivery stream,
a KinesisStreamSourceConfiguration containing the Kinesis data
stream Amazon Resource Name (ARN) and the role ARN for the source stream.
Parameter redshiftDestinationConfiguration
:
The destination in Amazon Redshift. You can specify only one destination.
Parameter s3DestinationConfiguration
:
Deprecated The destination in Amazon S3. You can specify only one
destination.
Parameter splunkDestinationConfiguration
:
The destination in Splunk. You can specify only one destination.
Parameter tags
:
A set of tags to assign to the delivery stream. A tag is a key-value pair
that you can define and assign to AWS resources. Tags are metadata. For
example, you can add friendly names and descriptions or other types of
information that can help you distinguish the delivery stream. For more
information about tags, see Using
Cost Allocation Tags in the AWS Billing and Cost Management User
Guide.
You can specify up to 50 tags when creating a delivery stream.
Implementation
Future<CreateDeliveryStreamOutput> createDeliveryStream({
required String deliveryStreamName,
DeliveryStreamEncryptionConfigurationInput?
deliveryStreamEncryptionConfigurationInput,
DeliveryStreamType? deliveryStreamType,
ElasticsearchDestinationConfiguration?
elasticsearchDestinationConfiguration,
ExtendedS3DestinationConfiguration? extendedS3DestinationConfiguration,
HttpEndpointDestinationConfiguration? httpEndpointDestinationConfiguration,
KinesisStreamSourceConfiguration? kinesisStreamSourceConfiguration,
RedshiftDestinationConfiguration? redshiftDestinationConfiguration,
S3DestinationConfiguration? s3DestinationConfiguration,
SplunkDestinationConfiguration? splunkDestinationConfiguration,
List<Tag>? tags,
}) async {
ArgumentError.checkNotNull(deliveryStreamName, 'deliveryStreamName');
_s.validateStringLength(
'deliveryStreamName',
deliveryStreamName,
1,
64,
isRequired: true,
);
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'Firehose_20150804.CreateDeliveryStream'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'DeliveryStreamName': deliveryStreamName,
if (deliveryStreamEncryptionConfigurationInput != null)
'DeliveryStreamEncryptionConfigurationInput':
deliveryStreamEncryptionConfigurationInput,
if (deliveryStreamType != null)
'DeliveryStreamType': deliveryStreamType.toValue(),
if (elasticsearchDestinationConfiguration != null)
'ElasticsearchDestinationConfiguration':
elasticsearchDestinationConfiguration,
if (extendedS3DestinationConfiguration != null)
'ExtendedS3DestinationConfiguration':
extendedS3DestinationConfiguration,
if (httpEndpointDestinationConfiguration != null)
'HttpEndpointDestinationConfiguration':
httpEndpointDestinationConfiguration,
if (kinesisStreamSourceConfiguration != null)
'KinesisStreamSourceConfiguration': kinesisStreamSourceConfiguration,
if (redshiftDestinationConfiguration != null)
'RedshiftDestinationConfiguration': redshiftDestinationConfiguration,
if (s3DestinationConfiguration != null)
'S3DestinationConfiguration': s3DestinationConfiguration,
if (splunkDestinationConfiguration != null)
'SplunkDestinationConfiguration': splunkDestinationConfiguration,
if (tags != null) 'Tags': tags,
},
);
return CreateDeliveryStreamOutput.fromJson(jsonResponse.body);
}