interface DataConnectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTTwinMaker.Mixins.CfnComponentTypePropsMixin.DataConnectorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiottwinmaker/mixins#CfnComponentTypePropsMixin_DataConnectorProperty |
Java | software.amazon.awscdk.mixins.preview.services.iottwinmaker.mixins.CfnComponentTypePropsMixin.DataConnectorProperty |
Python | aws_cdk.mixins_preview.aws_iottwinmaker.mixins.CfnComponentTypePropsMixin.DataConnectorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iottwinmaker » mixins » CfnComponentTypePropsMixin » DataConnectorProperty |
The data connector.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iottwinmaker_mixins } from '@aws-cdk/mixins-preview/aws-iottwinmaker';
const dataConnectorProperty: iottwinmaker_mixins.CfnComponentTypePropsMixin.DataConnectorProperty = {
isNative: false,
lambda: {
arn: 'arn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | A boolean value that specifies whether the data connector is native to IoT TwinMaker. |
| lambda? | IResolvable | Lambda | The Lambda function associated with the data connector. |
isNative?
Type:
boolean | IResolvable
(optional)
A boolean value that specifies whether the data connector is native to IoT TwinMaker.
lambda?
Type:
IResolvable | Lambda
(optional)
The Lambda function associated with the data connector.

.NET
Go
Java
Python
TypeScript