agent-claw: automated task changes
This commit is contained in:
35
cdk/node_modules/aws-cdk-lib/aws-kinesisfirehose/lib/destination.d.ts
generated
vendored
Normal file
35
cdk/node_modules/aws-cdk-lib/aws-kinesisfirehose/lib/destination.d.ts
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
import type { Construct, IDependable } from 'constructs';
|
||||
import type { CfnDeliveryStream } from './kinesisfirehose.generated';
|
||||
/**
|
||||
* An Amazon Data Firehose delivery stream destination configuration.
|
||||
*/
|
||||
export interface DestinationConfig {
|
||||
/**
|
||||
* S3 destination configuration properties.
|
||||
*
|
||||
* @default - S3 destination is not used.
|
||||
*/
|
||||
readonly extendedS3DestinationConfiguration?: CfnDeliveryStream.ExtendedS3DestinationConfigurationProperty;
|
||||
/**
|
||||
* Any resources that were created by the destination when binding it to the stack that must be deployed before the delivery stream is deployed.
|
||||
*
|
||||
* @default []
|
||||
*/
|
||||
readonly dependables?: IDependable[];
|
||||
}
|
||||
/**
|
||||
* Options when binding a destination to a delivery stream.
|
||||
*/
|
||||
export interface DestinationBindOptions {
|
||||
}
|
||||
/**
|
||||
* An Amazon Data Firehose delivery stream destination.
|
||||
*/
|
||||
export interface IDestination {
|
||||
/**
|
||||
* Binds this destination to the Amazon Data Firehose delivery stream.
|
||||
*
|
||||
* Implementers should use this method to bind resources to the stack and initialize values using the provided stream.
|
||||
*/
|
||||
bind(scope: Construct, options: DestinationBindOptions): DestinationConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user