Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-function.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-function.html#cfn-iottwinmaker-componenttype-function-implementedby

Type union: either IResolvable or CfnComponentType.IDataConnectorProperty

RequiredProperties

The required properties of the function.

string[]? RequiredProperties { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-function.html#cfn-iottwinmaker-componenttype-function-requiredproperties

Scope

The scope of the function.

string? Scope { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-function.html#cfn-iottwinmaker-componenttype-function-scope

Back to top Generated by DocFX