Interface CfnComponentType.IFunctionProperty
The function body.
Namespace: Amazon.CDK.AWS.IoTTwinMaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnComponentType.IFunctionProperty
Syntax (vb)
Public Interface 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
Properties
| ImplementedBy | The data connector. |
| RequiredProperties | The required properties of the function. |
| Scope | The scope of the function. |
Properties
ImplementedBy
The data connector.
object? ImplementedBy { get; }
Property Value
Remarks
RequiredProperties
The required properties of the function.
string[]? RequiredProperties { get; }
Property Value
string[]
Remarks
Scope
The scope of the function.
string? Scope { get; }