aws-cdk-lib.aws_iottwinmaker.CfnComponentType.FunctionProperty

interface FunctionProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTTwinMaker.CfnComponentType.FunctionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiottwinmaker#CfnComponentType_FunctionProperty
Javasoftware.amazon.awscdk.services.iottwinmaker.CfnComponentType.FunctionProperty
Pythonaws_cdk.aws_iottwinmaker.CfnComponentType.FunctionProperty
TypeScript aws-cdk-lib » aws_iottwinmaker » CfnComponentType » FunctionProperty

The function body.

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-lib';
const functionProperty: iottwinmaker.CfnComponentType.FunctionProperty = {
  implementedBy: {
    isNative: false,
    lambda: {
      arn: 'arn',
    },
  },
  requiredProperties: ['requiredProperties'],
  scope: 'scope',
};

Properties

NameTypeDescription
implementedBy?IResolvable | DataConnectorPropertyThe data connector.
requiredProperties?string[]The required properties of the function.
scope?stringThe scope of the function.

implementedBy?

Type: IResolvable | DataConnectorProperty (optional)

The data connector.


requiredProperties?

Type: string[] (optional)

The required properties of the function.


scope?

Type: string (optional)

The scope of the function.