aws-cdk-lib.aws_iotanalytics.CfnDataset.DatasetContentDeliveryRuleDestinationProperty

interface DatasetContentDeliveryRuleDestinationProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTAnalytics.CfnDataset.DatasetContentDeliveryRuleDestinationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnDataset_DatasetContentDeliveryRuleDestinationProperty
Javasoftware.amazon.awscdk.services.iotanalytics.CfnDataset.DatasetContentDeliveryRuleDestinationProperty
Pythonaws_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

NameTypeDescription
iotEventsDestinationConfiguration?IResolvable | IotEventsDestinationConfigurationPropertyConfiguration information for delivery of dataset contents to AWS IoT Events .
s3DestinationConfiguration?IResolvable | S3DestinationConfigurationPropertyConfiguration information for delivery of dataset contents to Amazon S3.

iotEventsDestinationConfiguration?

Type: IResolvable | IotEventsDestinationConfigurationProperty (optional)

Configuration information for delivery of dataset contents to AWS IoT Events .


s3DestinationConfiguration?

Type: IResolvable | S3DestinationConfigurationProperty (optional)

Configuration information for delivery of dataset contents to Amazon S3.