interface IotEventsDestinationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatasetPropsMixin.IotEventsDestinationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatasetPropsMixin_IotEventsDestinationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatasetPropsMixin.IotEventsDestinationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatasetPropsMixin.IotEventsDestinationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » 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 { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const iotEventsDestinationConfigurationProperty: iotanalytics_mixins.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 AWS IoT Analytics 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 AWS IoT Analytics permission to deliver dataset contents to an AWS IoT Events input.

.NET
Go
Java
Python
TypeScript