Interface CfnEntity.ComponentProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEntity.ComponentProperty.Jsii$Proxy
- Enclosing class:
- CfnEntity
@Stability(Stable)
public static interface CfnEntity.ComponentProperty
extends software.amazon.jsii.JsiiSerializable
The entity component.
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.*; DataValueProperty dataValueProperty_; Object definition; Object error; Object relationshipValue; ComponentProperty componentProperty = ComponentProperty.builder() .componentName("componentName") .componentTypeId("componentTypeId") .definedIn("definedIn") .description("description") .properties(Map.of( "propertiesKey", PropertyProperty.builder() .definition(definition) .value(DataValueProperty.builder() .booleanValue(false) .doubleValue(123) .expression("expression") .integerValue(123) .listValue(List.of(dataValueProperty_)) .longValue(123) .mapValue(Map.of( "mapValueKey", dataValueProperty_)) .relationshipValue(relationshipValue) .stringValue("stringValue") .build()) .build())) .propertyGroups(Map.of( "propertyGroupsKey", PropertyGroupProperty.builder() .groupType("groupType") .propertyNames(List.of("propertyNames")) .build())) .status(StatusProperty.builder() .error(error) .state("state") .build()) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEntity.ComponentProperty
static final class
An implementation forCfnEntity.ComponentProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the component.default String
The ID of the ComponentType.default String
The name of the property definition set in the request.default String
The description of the component.default Object
An object that maps strings to the properties to set in the component type.default Object
An object that maps strings to the property groups in the component type.default Object
The status of the component.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComponentName
The name of the component. -
getComponentTypeId
The ID of the ComponentType. -
getDefinedIn
The name of the property definition set in the request. -
getDescription
The description of the component. -
getProperties
An object that maps strings to the properties to set in the component type.Each string in the mapping must be unique to this object.
-
getPropertyGroups
An object that maps strings to the property groups in the component type.Each string in the mapping must be unique to this object.
-
getStatus
The status of the component. -
builder
-