Show / Hide Table of Contents

Interface CfnDataset.IDatasetContentDeliveryRuleDestinationProperty

The destination to which dataset contents are delivered.

Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public interface IDatasetContentDeliveryRuleDestinationProperty
Syntax (vb)
Public Interface IDatasetContentDeliveryRuleDestinationProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-datasetcontentdeliveryruledestination.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTAnalytics;

DatasetContentDeliveryRuleDestinationProperty datasetContentDeliveryRuleDestinationProperty = new DatasetContentDeliveryRuleDestinationProperty {
    IotEventsDestinationConfiguration = new IotEventsDestinationConfigurationProperty {
        InputName = "inputName",
        RoleArn = "roleArn"
    },
    S3DestinationConfiguration = new S3DestinationConfigurationProperty {
        Bucket = "bucket",
        Key = "key",
        RoleArn = "roleArn",

        // the properties below are optional
        GlueConfiguration = new GlueConfigurationProperty {
            DatabaseName = "databaseName",
            TableName = "tableName"
        }
    }
};

Synopsis

Properties

IotEventsDestinationConfiguration

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

S3DestinationConfiguration

Configuration information for delivery of dataset contents to Amazon S3.

Properties

IotEventsDestinationConfiguration

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

virtual object IotEventsDestinationConfiguration { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-datasetcontentdeliveryruledestination.html#cfn-iotanalytics-dataset-datasetcontentdeliveryruledestination-ioteventsdestinationconfiguration

S3DestinationConfiguration

Configuration information for delivery of dataset contents to Amazon S3.

virtual object S3DestinationConfiguration { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-datasetcontentdeliveryruledestination.html#cfn-iotanalytics-dataset-datasetcontentdeliveryruledestination-s3destinationconfiguration

Back to top Generated by DocFX