Show / Hide Table of Contents

Class CfnComponentType.FunctionProperty

The function body.

Inheritance
object
CfnComponentType.FunctionProperty
Implements
CfnComponentType.IFunctionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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"
             };

Properties

ImplementedBy

The data connector.

public object? ImplementedBy { get; set; }
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.

public string[]? RequiredProperties { get; set; }
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.

public string? Scope { get; set; }
Property Value

string

Remarks

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

Implements

CfnComponentType.IFunctionProperty
Back to top Generated by DocFX