interface FunctionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTTwinMaker.Mixins.CfnComponentTypePropsMixin.FunctionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiottwinmaker/mixins#CfnComponentTypePropsMixin_FunctionProperty |
Java | software.amazon.awscdk.mixins.preview.services.iottwinmaker.mixins.CfnComponentTypePropsMixin.FunctionProperty |
Python | aws_cdk.mixins_preview.aws_iottwinmaker.mixins.CfnComponentTypePropsMixin.FunctionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iottwinmaker » mixins » CfnComponentTypePropsMixin » 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 { mixins as iottwinmaker_mixins } from '@aws-cdk/mixins-preview/aws-iottwinmaker';
const functionProperty: iottwinmaker_mixins.CfnComponentTypePropsMixin.FunctionProperty = {
implementedBy: {
isNative: false,
lambda: {
arn: 'arn',
},
},
requiredProperties: ['requiredProperties'],
scope: 'scope',
};
Properties
| Name | Type | Description |
|---|---|---|
| implemented | IResolvable | Data | The data connector. |
| required | string[] | The required properties of the function. |
| scope? | string | The scope of the function. |
implementedBy?
Type:
IResolvable | Data
(optional)
The data connector.
requiredProperties?
Type:
string[]
(optional)
The required properties of the function.
scope?
Type:
string
(optional)
The scope of the function.

.NET
Go
Java
Python
TypeScript