@Stability(value=Stable)
public static interface CfnComponentType.FunctionProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iottwinmaker.*;
FunctionProperty functionProperty = FunctionProperty.builder()
.implementedBy(DataConnectorProperty.builder()
.isNative(false)
.lambda(LambdaFunctionProperty.builder()
.arn("arn")
.build())
.build())
.requiredProperties(List.of("requiredProperties"))
.scope("scope")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnComponentType.FunctionProperty.Builder
A builder for
CfnComponentType.FunctionProperty |
static class |
CfnComponentType.FunctionProperty.Jsii$Proxy
An implementation for
CfnComponentType.FunctionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnComponentType.FunctionProperty.Builder |
builder() |
default Object |
getImplementedBy()
The data connector.
|
default List<String> |
getRequiredProperties()
The required properties of the function.
|
default String |
getScope()
The scope of the function.
|
@Stability(value=Stable) @Nullable default Object getImplementedBy()
@Stability(value=Stable) @Nullable default List<String> getRequiredProperties()
@Stability(value=Stable) @Nullable default String getScope()
@Stability(value=Stable) static CfnComponentType.FunctionProperty.Builder builder()
Copyright © 2022. All rights reserved.