Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewS3Bucket_Override ¶
func NewS3Bucket_Override(s S3Bucket, bucket awss3.IBucket, props *S3BucketProps)
Experimental.
Types ¶
type BackupMode ¶
type BackupMode string
Options for S3 record backup of a delivery stream. Experimental.
const ( BackupMode_ALL BackupMode = "ALL" BackupMode_FAILED BackupMode = "FAILED" )
type CommonDestinationProps ¶
type CommonDestinationProps struct { // If true, log errors when data transformation or data delivery fails. // // If `logGroup` is provided, this will be implicitly set to `true`. // Experimental. Logging *bool `json:"logging"` // The CloudWatch log group where log streams will be created to hold error logs. // Experimental. LogGroup awslogs.ILogGroup `json:"logGroup"` // The data transformation that should be performed on the data before writing to the destination. // Experimental. Processor awskinesisfirehose.IDataProcessor `json:"processor"` // The IAM role associated with this destination. // // Assumed by Kinesis Data Firehose to invoke processors and write to destinations // Experimental. Role awsiam.IRole `json:"role"` // The configuration for backing up source records to S3. // Experimental. S3Backup *DestinationS3BackupProps `json:"s3Backup"` }
Generic properties for defining a delivery stream destination. Experimental.
type CommonDestinationS3Props ¶
type CommonDestinationS3Props struct { // The length of time that Firehose buffers incoming data before delivering it to the S3 bucket. // // Minimum: Duration.seconds(60) // Maximum: Duration.seconds(900) // Experimental. BufferingInterval awscdk.Duration `json:"bufferingInterval"` // The size of the buffer that Kinesis Data Firehose uses for incoming data before delivering it to the S3 bucket. // // Minimum: Size.mebibytes(1) // Maximum: Size.mebibytes(128) // Experimental. BufferingSize awscdk.Size `json:"bufferingSize"` // The type of compression that Kinesis Data Firehose uses to compress the data that it delivers to the Amazon S3 bucket. // // 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. // Experimental. Compression Compression `json:"compression"` // A prefix that Kinesis Data Firehose evaluates and adds to records before writing them to S3. // // This prefix appears immediately following the bucket name. // See: https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html // // Experimental. DataOutputPrefix *string `json:"dataOutputPrefix"` // The AWS KMS key used to encrypt the data that it delivers to your Amazon S3 bucket. // Experimental. EncryptionKey awskms.IKey `json:"encryptionKey"` // 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. // See: https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html // // Experimental. ErrorOutputPrefix *string `json:"errorOutputPrefix"` }
Common properties for defining a backup, intermediary, or final S3 destination for a Kinesis Data Firehose delivery stream. Experimental.
type Compression ¶
type Compression interface {
Value() *string
}
Possible compression options Kinesis Data Firehose can use to compress data on delivery. Experimental.
func Compression_GZIP ¶
func Compression_GZIP() Compression
func Compression_HADOOP_SNAPPY ¶
func Compression_HADOOP_SNAPPY() Compression
func Compression_Of ¶
func Compression_Of(value *string) Compression
Creates a new Compression instance with a custom value. Experimental.
func Compression_SNAPPY ¶
func Compression_SNAPPY() Compression
func Compression_ZIP ¶
func Compression_ZIP() Compression
type DestinationS3BackupProps ¶
type DestinationS3BackupProps struct { // The length of time that Firehose buffers incoming data before delivering it to the S3 bucket. // // Minimum: Duration.seconds(60) // Maximum: Duration.seconds(900) // Experimental. BufferingInterval awscdk.Duration `json:"bufferingInterval"` // The size of the buffer that Kinesis Data Firehose uses for incoming data before delivering it to the S3 bucket. // // Minimum: Size.mebibytes(1) // Maximum: Size.mebibytes(128) // Experimental. BufferingSize awscdk.Size `json:"bufferingSize"` // The type of compression that Kinesis Data Firehose uses to compress the data that it delivers to the Amazon S3 bucket. // // 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. // Experimental. Compression Compression `json:"compression"` // A prefix that Kinesis Data Firehose evaluates and adds to records before writing them to S3. // // This prefix appears immediately following the bucket name. // See: https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html // // Experimental. DataOutputPrefix *string `json:"dataOutputPrefix"` // The AWS KMS key used to encrypt the data that it delivers to your Amazon S3 bucket. // Experimental. EncryptionKey awskms.IKey `json:"encryptionKey"` // 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. // See: https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html // // Experimental. ErrorOutputPrefix *string `json:"errorOutputPrefix"` // The S3 bucket that will store data and failed records. // Experimental. Bucket awss3.IBucket `json:"bucket"` // If true, log errors when data transformation or data delivery fails. // // If `logGroup` is provided, this will be implicitly set to `true`. // Experimental. Logging *bool `json:"logging"` // The CloudWatch log group where log streams will be created to hold error logs. // Experimental. LogGroup awslogs.ILogGroup `json:"logGroup"` // Indicates the mode by which incoming records should be backed up to S3, if any. // // If `bucket` is provided, this will be implicitly set to `BackupMode.ALL`. // Experimental. Mode BackupMode `json:"mode"` }
Properties for defining an S3 backup destination.
S3 backup is available for all destinations, regardless of whether the final destination is S3 or not. Experimental.
type S3Bucket ¶
type S3Bucket interface { awskinesisfirehose.IDestination Bind(scope constructs.Construct, _options *awskinesisfirehose.DestinationBindOptions) *awskinesisfirehose.DestinationConfig }
An S3 bucket destination for data from a Kinesis Data Firehose delivery stream. Experimental.
func NewS3Bucket ¶
func NewS3Bucket(bucket awss3.IBucket, props *S3BucketProps) S3Bucket
Experimental.
type S3BucketProps ¶
type S3BucketProps struct { // The length of time that Firehose buffers incoming data before delivering it to the S3 bucket. // // Minimum: Duration.seconds(60) // Maximum: Duration.seconds(900) // Experimental. BufferingInterval awscdk.Duration `json:"bufferingInterval"` // The size of the buffer that Kinesis Data Firehose uses for incoming data before delivering it to the S3 bucket. // // Minimum: Size.mebibytes(1) // Maximum: Size.mebibytes(128) // Experimental. BufferingSize awscdk.Size `json:"bufferingSize"` // The type of compression that Kinesis Data Firehose uses to compress the data that it delivers to the Amazon S3 bucket. // // 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. // Experimental. Compression Compression `json:"compression"` // A prefix that Kinesis Data Firehose evaluates and adds to records before writing them to S3. // // This prefix appears immediately following the bucket name. // See: https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html // // Experimental. DataOutputPrefix *string `json:"dataOutputPrefix"` // The AWS KMS key used to encrypt the data that it delivers to your Amazon S3 bucket. // Experimental. EncryptionKey awskms.IKey `json:"encryptionKey"` // 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. // See: https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html // // Experimental. ErrorOutputPrefix *string `json:"errorOutputPrefix"` // If true, log errors when data transformation or data delivery fails. // // If `logGroup` is provided, this will be implicitly set to `true`. // Experimental. Logging *bool `json:"logging"` // The CloudWatch log group where log streams will be created to hold error logs. // Experimental. LogGroup awslogs.ILogGroup `json:"logGroup"` // The data transformation that should be performed on the data before writing to the destination. // Experimental. Processor awskinesisfirehose.IDataProcessor `json:"processor"` // The IAM role associated with this destination. // // Assumed by Kinesis Data Firehose to invoke processors and write to destinations // Experimental. Role awsiam.IRole `json:"role"` // The configuration for backing up source records to S3. // Experimental. S3Backup *DestinationS3BackupProps `json:"s3Backup"` }
Props for defining an S3 destination of a Kinesis Data Firehose delivery stream. Experimental.