interface DatasetContentDeliveryRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatasetPropsMixin.DatasetContentDeliveryRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatasetPropsMixin_DatasetContentDeliveryRuleProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatasetPropsMixin.DatasetContentDeliveryRuleProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatasetPropsMixin.DatasetContentDeliveryRuleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatasetPropsMixin » DatasetContentDeliveryRuleProperty |
When dataset contents are created, they are delivered to destination specified here.
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 datasetContentDeliveryRuleProperty: iotanalytics_mixins.CfnDatasetPropsMixin.DatasetContentDeliveryRuleProperty = {
destination: {
iotEventsDestinationConfiguration: {
inputName: 'inputName',
roleArn: 'roleArn',
},
s3DestinationConfiguration: {
bucket: 'bucket',
glueConfiguration: {
databaseName: 'databaseName',
tableName: 'tableName',
},
key: 'key',
roleArn: 'roleArn',
},
},
entryName: 'entryName',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination? | IResolvable | Dataset | The destination to which dataset contents are delivered. |
| entry | string | The name of the dataset content delivery rules entry. |
destination?
Type:
IResolvable | Dataset
(optional)
The destination to which dataset contents are delivered.
entryName?
Type:
string
(optional)
The name of the dataset content delivery rules entry.

.NET
Go
Java
Python
TypeScript