Class CfnComponentType.FunctionProperty
The function body.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTTwinMaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnComponentType.FunctionProperty : CfnComponentType.IFunctionProperty
Syntax (vb)
Public Class CfnComponentType.FunctionProperty Implements CfnComponentType.IFunctionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTTwinMaker;
var functionProperty = new FunctionProperty {
ImplementedBy = new DataConnectorProperty {
IsNative = false,
Lambda = new LambdaFunctionProperty {
Arn = "arn"
}
},
RequiredProperties = new [] { "requiredProperties" },
Scope = "scope"
};
Synopsis
Constructors
| FunctionProperty() | The function body. |
Properties
| ImplementedBy | The data connector. |
| RequiredProperties | The required properties of the function. |
| Scope | The scope of the function. |
Constructors
FunctionProperty()
The function body.
public FunctionProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTTwinMaker;
var functionProperty = new FunctionProperty {
ImplementedBy = new DataConnectorProperty {
IsNative = false,
Lambda = new LambdaFunctionProperty {
Arn = "arn"
}
},
RequiredProperties = new [] { "requiredProperties" },
Scope = "scope"
};
Properties
ImplementedBy
The data connector.
public object? ImplementedBy { get; set; }
Property Value
Remarks
RequiredProperties
The required properties of the function.
public string[]? RequiredProperties { get; set; }
Property Value
string[]
Remarks
Scope
The scope of the function.
public string? Scope { get; set; }