/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Firehose { namespace Model { /** *

Describes an update for a destination in Amazon S3.

See Also:

* AWS * API Reference

*/ class ExtendedS3DestinationUpdate { public: AWS_FIREHOSE_API ExtendedS3DestinationUpdate(); AWS_FIREHOSE_API ExtendedS3DestinationUpdate(Aws::Utils::Json::JsonView jsonValue); AWS_FIREHOSE_API ExtendedS3DestinationUpdate& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_FIREHOSE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For * more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline const Aws::String& GetRoleARN() const{ return m_roleARN; } /** *

The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For * more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline bool RoleARNHasBeenSet() const { return m_roleARNHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For * more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline void SetRoleARN(const Aws::String& value) { m_roleARNHasBeenSet = true; m_roleARN = value; } /** *

The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For * more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline void SetRoleARN(Aws::String&& value) { m_roleARNHasBeenSet = true; m_roleARN = std::move(value); } /** *

The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For * more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline void SetRoleARN(const char* value) { m_roleARNHasBeenSet = true; m_roleARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For * more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline ExtendedS3DestinationUpdate& WithRoleARN(const Aws::String& value) { SetRoleARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For * more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline ExtendedS3DestinationUpdate& WithRoleARN(Aws::String&& value) { SetRoleARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For * more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline ExtendedS3DestinationUpdate& WithRoleARN(const char* value) { SetRoleARN(value); return *this;} /** *

The ARN of the S3 bucket. For more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline const Aws::String& GetBucketARN() const{ return m_bucketARN; } /** *

The ARN of the S3 bucket. For more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline bool BucketARNHasBeenSet() const { return m_bucketARNHasBeenSet; } /** *

The ARN of the S3 bucket. For more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline void SetBucketARN(const Aws::String& value) { m_bucketARNHasBeenSet = true; m_bucketARN = value; } /** *

The ARN of the S3 bucket. For more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline void SetBucketARN(Aws::String&& value) { m_bucketARNHasBeenSet = true; m_bucketARN = std::move(value); } /** *

The ARN of the S3 bucket. For more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline void SetBucketARN(const char* value) { m_bucketARNHasBeenSet = true; m_bucketARN.assign(value); } /** *

The ARN of the S3 bucket. For more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline ExtendedS3DestinationUpdate& WithBucketARN(const Aws::String& value) { SetBucketARN(value); return *this;} /** *

The ARN of the S3 bucket. For more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline ExtendedS3DestinationUpdate& WithBucketARN(Aws::String&& value) { SetBucketARN(std::move(value)); return *this;} /** *

The ARN of the S3 bucket. For more information, see Amazon * Resource Names (ARNs) and Amazon Web Services Service Namespaces.

*/ inline ExtendedS3DestinationUpdate& WithBucketARN(const char* value) { SetBucketARN(value); return *this;} /** *

The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered * Amazon S3 files. You can also specify a custom prefix, as described in Custom * Prefixes for Amazon S3 Objects.

*/ inline const Aws::String& GetPrefix() const{ return m_prefix; } /** *

The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered * Amazon S3 files. You can also specify a custom prefix, as described in Custom * Prefixes for Amazon S3 Objects.

*/ inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; } /** *

The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered * Amazon S3 files. You can also specify a custom prefix, as described in Custom * Prefixes for Amazon S3 Objects.

*/ inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; } /** *

The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered * Amazon S3 files. You can also specify a custom prefix, as described in Custom * Prefixes for Amazon S3 Objects.

*/ inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); } /** *

The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered * Amazon S3 files. You can also specify a custom prefix, as described in Custom * Prefixes for Amazon S3 Objects.

*/ inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); } /** *

The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered * Amazon S3 files. You can also specify a custom prefix, as described in Custom * Prefixes for Amazon S3 Objects.

*/ inline ExtendedS3DestinationUpdate& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;} /** *

The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered * Amazon S3 files. You can also specify a custom prefix, as described in Custom * Prefixes for Amazon S3 Objects.

*/ inline ExtendedS3DestinationUpdate& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;} /** *

The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered * Amazon S3 files. You can also specify a custom prefix, as described in Custom * Prefixes for Amazon S3 Objects.

*/ inline ExtendedS3DestinationUpdate& WithPrefix(const char* value) { SetPrefix(value); return *this;} /** *

A prefix that Kinesis Data Firehose evaluates and adds to failed records * before writing them to S3. This prefix appears immediately following the bucket * name. For information about how to specify this prefix, see Custom * Prefixes for Amazon S3 Objects.

*/ inline const Aws::String& GetErrorOutputPrefix() const{ return m_errorOutputPrefix; } /** *

A prefix that Kinesis Data Firehose evaluates and adds to failed records * before writing them to S3. This prefix appears immediately following the bucket * name. For information about how to specify this prefix, see Custom * Prefixes for Amazon S3 Objects.

*/ inline bool ErrorOutputPrefixHasBeenSet() const { return m_errorOutputPrefixHasBeenSet; } /** *

A prefix that Kinesis Data Firehose evaluates and adds to failed records * before writing them to S3. This prefix appears immediately following the bucket * name. For information about how to specify this prefix, see Custom * Prefixes for Amazon S3 Objects.

*/ inline void SetErrorOutputPrefix(const Aws::String& value) { m_errorOutputPrefixHasBeenSet = true; m_errorOutputPrefix = value; } /** *

A prefix that Kinesis Data Firehose evaluates and adds to failed records * before writing them to S3. This prefix appears immediately following the bucket * name. For information about how to specify this prefix, see Custom * Prefixes for Amazon S3 Objects.

*/ inline void SetErrorOutputPrefix(Aws::String&& value) { m_errorOutputPrefixHasBeenSet = true; m_errorOutputPrefix = std::move(value); } /** *

A prefix that Kinesis Data Firehose evaluates and adds to failed records * before writing them to S3. This prefix appears immediately following the bucket * name. For information about how to specify this prefix, see Custom * Prefixes for Amazon S3 Objects.

*/ inline void SetErrorOutputPrefix(const char* value) { m_errorOutputPrefixHasBeenSet = true; m_errorOutputPrefix.assign(value); } /** *

A prefix that Kinesis Data Firehose evaluates and adds to failed records * before writing them to S3. This prefix appears immediately following the bucket * name. For information about how to specify this prefix, see Custom * Prefixes for Amazon S3 Objects.

*/ inline ExtendedS3DestinationUpdate& WithErrorOutputPrefix(const Aws::String& value) { SetErrorOutputPrefix(value); return *this;} /** *

A prefix that Kinesis Data Firehose evaluates and adds to failed records * before writing them to S3. This prefix appears immediately following the bucket * name. For information about how to specify this prefix, see Custom * Prefixes for Amazon S3 Objects.

*/ inline ExtendedS3DestinationUpdate& WithErrorOutputPrefix(Aws::String&& value) { SetErrorOutputPrefix(std::move(value)); return *this;} /** *

A prefix that Kinesis Data Firehose evaluates and adds to failed records * before writing them to S3. This prefix appears immediately following the bucket * name. For information about how to specify this prefix, see Custom * Prefixes for Amazon S3 Objects.

*/ inline ExtendedS3DestinationUpdate& WithErrorOutputPrefix(const char* value) { SetErrorOutputPrefix(value); return *this;} /** *

The buffering option.

*/ inline const BufferingHints& GetBufferingHints() const{ return m_bufferingHints; } /** *

The buffering option.

*/ inline bool BufferingHintsHasBeenSet() const { return m_bufferingHintsHasBeenSet; } /** *

The buffering option.

*/ inline void SetBufferingHints(const BufferingHints& value) { m_bufferingHintsHasBeenSet = true; m_bufferingHints = value; } /** *

The buffering option.

*/ inline void SetBufferingHints(BufferingHints&& value) { m_bufferingHintsHasBeenSet = true; m_bufferingHints = std::move(value); } /** *

The buffering option.

*/ inline ExtendedS3DestinationUpdate& WithBufferingHints(const BufferingHints& value) { SetBufferingHints(value); return *this;} /** *

The buffering option.

*/ inline ExtendedS3DestinationUpdate& WithBufferingHints(BufferingHints&& value) { SetBufferingHints(std::move(value)); return *this;} /** *

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

*/ inline const CompressionFormat& GetCompressionFormat() const{ return m_compressionFormat; } /** *

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

*/ inline bool CompressionFormatHasBeenSet() const { return m_compressionFormatHasBeenSet; } /** *

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

*/ inline void SetCompressionFormat(const CompressionFormat& value) { m_compressionFormatHasBeenSet = true; m_compressionFormat = value; } /** *

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

*/ inline void SetCompressionFormat(CompressionFormat&& value) { m_compressionFormatHasBeenSet = true; m_compressionFormat = std::move(value); } /** *

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

*/ inline ExtendedS3DestinationUpdate& WithCompressionFormat(const CompressionFormat& value) { SetCompressionFormat(value); return *this;} /** *

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

*/ inline ExtendedS3DestinationUpdate& WithCompressionFormat(CompressionFormat&& value) { SetCompressionFormat(std::move(value)); return *this;} /** *

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

*/ inline const EncryptionConfiguration& GetEncryptionConfiguration() const{ return m_encryptionConfiguration; } /** *

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

*/ inline bool EncryptionConfigurationHasBeenSet() const { return m_encryptionConfigurationHasBeenSet; } /** *

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

*/ inline void SetEncryptionConfiguration(const EncryptionConfiguration& value) { m_encryptionConfigurationHasBeenSet = true; m_encryptionConfiguration = value; } /** *

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

*/ inline void SetEncryptionConfiguration(EncryptionConfiguration&& value) { m_encryptionConfigurationHasBeenSet = true; m_encryptionConfiguration = std::move(value); } /** *

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

*/ inline ExtendedS3DestinationUpdate& WithEncryptionConfiguration(const EncryptionConfiguration& value) { SetEncryptionConfiguration(value); return *this;} /** *

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

*/ inline ExtendedS3DestinationUpdate& WithEncryptionConfiguration(EncryptionConfiguration&& value) { SetEncryptionConfiguration(std::move(value)); return *this;} /** *

The Amazon CloudWatch logging options for your delivery stream.

*/ inline const CloudWatchLoggingOptions& GetCloudWatchLoggingOptions() const{ return m_cloudWatchLoggingOptions; } /** *

The Amazon CloudWatch logging options for your delivery stream.

*/ inline bool CloudWatchLoggingOptionsHasBeenSet() const { return m_cloudWatchLoggingOptionsHasBeenSet; } /** *

The Amazon CloudWatch logging options for your delivery stream.

*/ inline void SetCloudWatchLoggingOptions(const CloudWatchLoggingOptions& value) { m_cloudWatchLoggingOptionsHasBeenSet = true; m_cloudWatchLoggingOptions = value; } /** *

The Amazon CloudWatch logging options for your delivery stream.

*/ inline void SetCloudWatchLoggingOptions(CloudWatchLoggingOptions&& value) { m_cloudWatchLoggingOptionsHasBeenSet = true; m_cloudWatchLoggingOptions = std::move(value); } /** *

The Amazon CloudWatch logging options for your delivery stream.

*/ inline ExtendedS3DestinationUpdate& WithCloudWatchLoggingOptions(const CloudWatchLoggingOptions& value) { SetCloudWatchLoggingOptions(value); return *this;} /** *

The Amazon CloudWatch logging options for your delivery stream.

*/ inline ExtendedS3DestinationUpdate& WithCloudWatchLoggingOptions(CloudWatchLoggingOptions&& value) { SetCloudWatchLoggingOptions(std::move(value)); return *this;} /** *

The data processing configuration.

*/ inline const ProcessingConfiguration& GetProcessingConfiguration() const{ return m_processingConfiguration; } /** *

The data processing configuration.

*/ inline bool ProcessingConfigurationHasBeenSet() const { return m_processingConfigurationHasBeenSet; } /** *

The data processing configuration.

*/ inline void SetProcessingConfiguration(const ProcessingConfiguration& value) { m_processingConfigurationHasBeenSet = true; m_processingConfiguration = value; } /** *

The data processing configuration.

*/ inline void SetProcessingConfiguration(ProcessingConfiguration&& value) { m_processingConfigurationHasBeenSet = true; m_processingConfiguration = std::move(value); } /** *

The data processing configuration.

*/ inline ExtendedS3DestinationUpdate& WithProcessingConfiguration(const ProcessingConfiguration& value) { SetProcessingConfiguration(value); return *this;} /** *

The data processing configuration.

*/ inline ExtendedS3DestinationUpdate& WithProcessingConfiguration(ProcessingConfiguration&& value) { SetProcessingConfiguration(std::move(value)); return *this;} /** *

You can update a delivery stream to enable Amazon S3 backup if it is * disabled. If backup is enabled, you can't update the delivery stream to disable * it.

*/ inline const S3BackupMode& GetS3BackupMode() const{ return m_s3BackupMode; } /** *

You can update a delivery stream to enable Amazon S3 backup if it is * disabled. If backup is enabled, you can't update the delivery stream to disable * it.

*/ inline bool S3BackupModeHasBeenSet() const { return m_s3BackupModeHasBeenSet; } /** *

You can update a delivery stream to enable Amazon S3 backup if it is * disabled. If backup is enabled, you can't update the delivery stream to disable * it.

*/ inline void SetS3BackupMode(const S3BackupMode& value) { m_s3BackupModeHasBeenSet = true; m_s3BackupMode = value; } /** *

You can update a delivery stream to enable Amazon S3 backup if it is * disabled. If backup is enabled, you can't update the delivery stream to disable * it.

*/ inline void SetS3BackupMode(S3BackupMode&& value) { m_s3BackupModeHasBeenSet = true; m_s3BackupMode = std::move(value); } /** *

You can update a delivery stream to enable Amazon S3 backup if it is * disabled. If backup is enabled, you can't update the delivery stream to disable * it.

*/ inline ExtendedS3DestinationUpdate& WithS3BackupMode(const S3BackupMode& value) { SetS3BackupMode(value); return *this;} /** *

You can update a delivery stream to enable Amazon S3 backup if it is * disabled. If backup is enabled, you can't update the delivery stream to disable * it.

*/ inline ExtendedS3DestinationUpdate& WithS3BackupMode(S3BackupMode&& value) { SetS3BackupMode(std::move(value)); return *this;} /** *

The Amazon S3 destination for backup.

*/ inline const S3DestinationUpdate& GetS3BackupUpdate() const{ return m_s3BackupUpdate; } /** *

The Amazon S3 destination for backup.

*/ inline bool S3BackupUpdateHasBeenSet() const { return m_s3BackupUpdateHasBeenSet; } /** *

The Amazon S3 destination for backup.

*/ inline void SetS3BackupUpdate(const S3DestinationUpdate& value) { m_s3BackupUpdateHasBeenSet = true; m_s3BackupUpdate = value; } /** *

The Amazon S3 destination for backup.

*/ inline void SetS3BackupUpdate(S3DestinationUpdate&& value) { m_s3BackupUpdateHasBeenSet = true; m_s3BackupUpdate = std::move(value); } /** *

The Amazon S3 destination for backup.

*/ inline ExtendedS3DestinationUpdate& WithS3BackupUpdate(const S3DestinationUpdate& value) { SetS3BackupUpdate(value); return *this;} /** *

The Amazon S3 destination for backup.

*/ inline ExtendedS3DestinationUpdate& WithS3BackupUpdate(S3DestinationUpdate&& value) { SetS3BackupUpdate(std::move(value)); return *this;} /** *

The serializer, deserializer, and schema for converting data from the JSON * format to the Parquet or ORC format before writing it to Amazon S3.

*/ inline const DataFormatConversionConfiguration& GetDataFormatConversionConfiguration() const{ return m_dataFormatConversionConfiguration; } /** *

The serializer, deserializer, and schema for converting data from the JSON * format to the Parquet or ORC format before writing it to Amazon S3.

*/ inline bool DataFormatConversionConfigurationHasBeenSet() const { return m_dataFormatConversionConfigurationHasBeenSet; } /** *

The serializer, deserializer, and schema for converting data from the JSON * format to the Parquet or ORC format before writing it to Amazon S3.

*/ inline void SetDataFormatConversionConfiguration(const DataFormatConversionConfiguration& value) { m_dataFormatConversionConfigurationHasBeenSet = true; m_dataFormatConversionConfiguration = value; } /** *

The serializer, deserializer, and schema for converting data from the JSON * format to the Parquet or ORC format before writing it to Amazon S3.

*/ inline void SetDataFormatConversionConfiguration(DataFormatConversionConfiguration&& value) { m_dataFormatConversionConfigurationHasBeenSet = true; m_dataFormatConversionConfiguration = std::move(value); } /** *

The serializer, deserializer, and schema for converting data from the JSON * format to the Parquet or ORC format before writing it to Amazon S3.

*/ inline ExtendedS3DestinationUpdate& WithDataFormatConversionConfiguration(const DataFormatConversionConfiguration& value) { SetDataFormatConversionConfiguration(value); return *this;} /** *

The serializer, deserializer, and schema for converting data from the JSON * format to the Parquet or ORC format before writing it to Amazon S3.

*/ inline ExtendedS3DestinationUpdate& WithDataFormatConversionConfiguration(DataFormatConversionConfiguration&& value) { SetDataFormatConversionConfiguration(std::move(value)); return *this;} /** *

The configuration of the dynamic partitioning mechanism that creates smaller * data sets from the streaming data by partitioning it based on partition keys. * Currently, dynamic partitioning is only supported for Amazon S3 destinations. *

*/ inline const DynamicPartitioningConfiguration& GetDynamicPartitioningConfiguration() const{ return m_dynamicPartitioningConfiguration; } /** *

The configuration of the dynamic partitioning mechanism that creates smaller * data sets from the streaming data by partitioning it based on partition keys. * Currently, dynamic partitioning is only supported for Amazon S3 destinations. *

*/ inline bool DynamicPartitioningConfigurationHasBeenSet() const { return m_dynamicPartitioningConfigurationHasBeenSet; } /** *

The configuration of the dynamic partitioning mechanism that creates smaller * data sets from the streaming data by partitioning it based on partition keys. * Currently, dynamic partitioning is only supported for Amazon S3 destinations. *

*/ inline void SetDynamicPartitioningConfiguration(const DynamicPartitioningConfiguration& value) { m_dynamicPartitioningConfigurationHasBeenSet = true; m_dynamicPartitioningConfiguration = value; } /** *

The configuration of the dynamic partitioning mechanism that creates smaller * data sets from the streaming data by partitioning it based on partition keys. * Currently, dynamic partitioning is only supported for Amazon S3 destinations. *

*/ inline void SetDynamicPartitioningConfiguration(DynamicPartitioningConfiguration&& value) { m_dynamicPartitioningConfigurationHasBeenSet = true; m_dynamicPartitioningConfiguration = std::move(value); } /** *

The configuration of the dynamic partitioning mechanism that creates smaller * data sets from the streaming data by partitioning it based on partition keys. * Currently, dynamic partitioning is only supported for Amazon S3 destinations. *

*/ inline ExtendedS3DestinationUpdate& WithDynamicPartitioningConfiguration(const DynamicPartitioningConfiguration& value) { SetDynamicPartitioningConfiguration(value); return *this;} /** *

The configuration of the dynamic partitioning mechanism that creates smaller * data sets from the streaming data by partitioning it based on partition keys. * Currently, dynamic partitioning is only supported for Amazon S3 destinations. *

*/ inline ExtendedS3DestinationUpdate& WithDynamicPartitioningConfiguration(DynamicPartitioningConfiguration&& value) { SetDynamicPartitioningConfiguration(std::move(value)); return *this;} private: Aws::String m_roleARN; bool m_roleARNHasBeenSet = false; Aws::String m_bucketARN; bool m_bucketARNHasBeenSet = false; Aws::String m_prefix; bool m_prefixHasBeenSet = false; Aws::String m_errorOutputPrefix; bool m_errorOutputPrefixHasBeenSet = false; BufferingHints m_bufferingHints; bool m_bufferingHintsHasBeenSet = false; CompressionFormat m_compressionFormat; bool m_compressionFormatHasBeenSet = false; EncryptionConfiguration m_encryptionConfiguration; bool m_encryptionConfigurationHasBeenSet = false; CloudWatchLoggingOptions m_cloudWatchLoggingOptions; bool m_cloudWatchLoggingOptionsHasBeenSet = false; ProcessingConfiguration m_processingConfiguration; bool m_processingConfigurationHasBeenSet = false; S3BackupMode m_s3BackupMode; bool m_s3BackupModeHasBeenSet = false; S3DestinationUpdate m_s3BackupUpdate; bool m_s3BackupUpdateHasBeenSet = false; DataFormatConversionConfiguration m_dataFormatConversionConfiguration; bool m_dataFormatConversionConfigurationHasBeenSet = false; DynamicPartitioningConfiguration m_dynamicPartitioningConfiguration; bool m_dynamicPartitioningConfigurationHasBeenSet = false; }; } // namespace Model } // namespace Firehose } // namespace Aws