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