interface IotEventsDestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics.CfnDatasetPropsMixin.IotEventsDestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotanalytics#CfnDatasetPropsMixin_IotEventsDestinationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotanalytics.CfnDatasetPropsMixin.IotEventsDestinationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotanalytics.CfnDatasetPropsMixin.IotEventsDestinationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotanalytics » CfnDatasetPropsMixin » IotEventsDestinationConfigurationProperty |
Configuration information for delivery of dataset contents to AWS IoT Events .
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 iotEventsDestinationConfigurationProperty: iotanalytics.CfnDatasetPropsMixin.IotEventsDestinationConfigurationProperty = {
inputName: 'inputName',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | The name of the AWS IoT Events input to which dataset contents are delivered. |
| role | string | The ARN of the role that grants ITA permission to deliver dataset contents to an AWS IoT Events input. |
inputName?
Type:
string
(optional)
The name of the AWS IoT Events input to which dataset contents are delivered.
roleArn?
Type:
string
(optional)
The ARN of the role that grants ITA permission to deliver dataset contents to an AWS IoT Events input.

.NET
Go
Java
Python
TypeScript