@Stability(value=Stable)
public static interface CfnComponent.ComponentChildProperty
extends software.amazon.jsii.JsiiSerializable
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.amplifyuibuilder.*;
ComponentChildProperty componentChildProperty_;
ComponentChildProperty componentChildProperty = ComponentChildProperty.builder()
.componentType("componentType")
.name("name")
.properties(ComponentPropertiesProperty.builder().build())
// the properties below are optional
.children(List.of(ComponentChildProperty.builder()
.componentType("componentType")
.name("name")
.properties(ComponentPropertiesProperty.builder().build())
// the properties below are optional
.children(List.of(componentChildProperty_))
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnComponent.ComponentChildProperty.Builder
A builder for
CfnComponent.ComponentChildProperty |
static class |
CfnComponent.ComponentChildProperty.Jsii$Proxy
An implementation for
CfnComponent.ComponentChildProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnComponent.ComponentChildProperty.Builder |
builder() |
default Object |
getChildren()
`CfnComponent.ComponentChildProperty.Children`.
|
String |
getComponentType()
`CfnComponent.ComponentChildProperty.ComponentType`.
|
String |
getName()
`CfnComponent.ComponentChildProperty.Name`.
|
Object |
getProperties()
`CfnComponent.ComponentChildProperty.Properties`.
|
@Stability(value=Stable) @Nullable default Object getChildren()
@Stability(value=Stable) @NotNull String getComponentType()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Object getProperties()
@Stability(value=Stable) static CfnComponent.ComponentChildProperty.Builder builder()
Copyright © 2021. All rights reserved.