interface DataConnectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTTwinMaker.CfnComponentTypePropsMixin.DataConnectorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiottwinmaker#CfnComponentTypePropsMixin_DataConnectorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iottwinmaker.CfnComponentTypePropsMixin.DataConnectorProperty |
Python | aws_cdk.cfn_property_mixins.aws_iottwinmaker.CfnComponentTypePropsMixin.DataConnectorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iottwinmaker » 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 { aws_iottwinmaker as iottwinmaker } from '@aws-cdk/cfn-property-mixins';
const dataConnectorProperty: iottwinmaker.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