interface DatasetContentDeliveryRuleDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics.CfnDatasetPropsMixin.DatasetContentDeliveryRuleDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotanalytics#CfnDatasetPropsMixin_DatasetContentDeliveryRuleDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotanalytics.CfnDatasetPropsMixin.DatasetContentDeliveryRuleDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotanalytics.CfnDatasetPropsMixin.DatasetContentDeliveryRuleDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotanalytics » 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 { aws_iotanalytics as iotanalytics } from '@aws-cdk/cfn-property-mixins';
const datasetContentDeliveryRuleDestinationProperty: iotanalytics.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