interface DatasetContentDeliveryRuleDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatasetPropsMixin.DatasetContentDeliveryRuleDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatasetPropsMixin_DatasetContentDeliveryRuleDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatasetPropsMixin.DatasetContentDeliveryRuleDestinationProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatasetPropsMixin.DatasetContentDeliveryRuleDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatasetPropsMixin » DatasetContentDeliveryRuleDestinationProperty |
The destination to which dataset contents are delivered.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const datasetContentDeliveryRuleDestinationProperty: iotanalytics_mixins.CfnDatasetPropsMixin.DatasetContentDeliveryRuleDestinationProperty = {
iotEventsDestinationConfiguration: {
inputName: 'inputName',
roleArn: 'roleArn',
},
s3DestinationConfiguration: {
bucket: 'bucket',
glueConfiguration: {
databaseName: 'databaseName',
tableName: 'tableName',
},
key: 'key',
roleArn: 'roleArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iot | IResolvable | Iot | Configuration information for delivery of dataset contents to AWS IoT Events . |
| s3 | IResolvable | S3 | Configuration information for delivery of dataset contents to Amazon S3. |
iotEventsDestinationConfiguration?
Type:
IResolvable | Iot
(optional)
Configuration information for delivery of dataset contents to AWS IoT Events .
s3DestinationConfiguration?
Type:
IResolvable | S3
(optional)
Configuration information for delivery of dataset contents to Amazon S3.

.NET
Go
Java
Python
TypeScript