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