Documentation
¶
Overview ¶
CDK Constructs for AWS IoT to AWS Kinesis Firehose to AWS S3 integration.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IotToKinesisFirehoseToS3_IsConstruct ¶
func IotToKinesisFirehoseToS3_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NewIotToKinesisFirehoseToS3_Override ¶
func NewIotToKinesisFirehoseToS3_Override(i IotToKinesisFirehoseToS3, scope constructs.Construct, id *string, props *IotToKinesisFirehoseToS3Props)
Types ¶
type IotToKinesisFirehoseToS3 ¶
type IotToKinesisFirehoseToS3 interface { constructs.Construct IotActionsRole() awsiam.Role IotTopicRule() awsiot.CfnTopicRule KinesisFirehose() awskinesisfirehose.CfnDeliveryStream KinesisFirehoseLogGroup() awslogs.LogGroup KinesisFirehoseRole() awsiam.Role Node() constructs.Node S3Bucket() awss3.Bucket S3BucketInterface() awss3.IBucket S3LoggingBucket() awss3.Bucket ToString() *string }
func NewIotToKinesisFirehoseToS3 ¶
func NewIotToKinesisFirehoseToS3(scope constructs.Construct, id *string, props *IotToKinesisFirehoseToS3Props) IotToKinesisFirehoseToS3
type IotToKinesisFirehoseToS3Props ¶
type IotToKinesisFirehoseToS3Props struct { // User provided CfnTopicRuleProps to override the defaults. IotTopicRuleProps *awsiot.CfnTopicRuleProps `json:"iotTopicRuleProps"` // User provided props to override the default props for the S3 Bucket. BucketProps *awss3.BucketProps `json:"bucketProps"` // Existing instance of S3 Bucket object, providing both this and `bucketProps` will cause an error. ExistingBucketObj awss3.IBucket `json:"existingBucketObj"` // Optional user provided props to override the default props. KinesisFirehoseProps interface{} `json:"kinesisFirehoseProps"` // Optional user provided props to override the default props for the S3 Logging Bucket. LoggingBucketProps *awss3.BucketProps `json:"loggingBucketProps"` // User provided props to override the default props for the CloudWatchLogs LogGroup. LogGroupProps *awslogs.LogGroupProps `json:"logGroupProps"` // Whether to turn on Access Logs for the S3 bucket with the associated storage costs. // // Enabling Access Logging is a best practice. LogS3AccessLogs *bool `json:"logS3AccessLogs"` }
Source Files
¶
Click to show internal directories.
Click to hide internal directories.