interface DatasetContentDeliveryRuleDestinationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoTAnalytics.CfnDataset.DatasetContentDeliveryRuleDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnDataset_DatasetContentDeliveryRuleDestinationProperty |
Java | software.amazon.awscdk.services.iotanalytics.CfnDataset.DatasetContentDeliveryRuleDestinationProperty |
Python | aws_cdk.aws_iotanalytics.CfnDataset.DatasetContentDeliveryRuleDestinationProperty |
TypeScript | aws-cdk-lib » aws_iotanalytics » CfnDataset » 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-lib';
const datasetContentDeliveryRuleDestinationProperty: iotanalytics.CfnDataset.DatasetContentDeliveryRuleDestinationProperty = {
iotEventsDestinationConfiguration: {
inputName: 'inputName',
roleArn: 'roleArn',
},
s3DestinationConfiguration: {
bucket: 'bucket',
key: 'key',
roleArn: 'roleArn',
// the properties below are optional
glueConfiguration: {
databaseName: 'databaseName',
tableName: 'tableName',
},
},
};
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.