Interface AssetModelCompositeModelDefinition.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<AssetModelCompositeModelDefinition.Builder,,AssetModelCompositeModelDefinition> SdkBuilder<AssetModelCompositeModelDefinition.Builder,,AssetModelCompositeModelDefinition> SdkPojo
- Enclosing class:
AssetModelCompositeModelDefinition
public static interface AssetModelCompositeModelDefinition.Builder
extends SdkPojo, CopyableBuilder<AssetModelCompositeModelDefinition.Builder,AssetModelCompositeModelDefinition>
-
Method Summary
Modifier and TypeMethodDescriptiondescription(String description) The description of the composite model.The name of the composite model.properties(Collection<AssetModelPropertyDefinition> properties) The asset property definitions for this composite model.properties(Consumer<AssetModelPropertyDefinition.Builder>... properties) The asset property definitions for this composite model.properties(AssetModelPropertyDefinition... properties) The asset property definitions for this composite model.The type of the composite model.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
name
The name of the composite model.
- Parameters:
name- The name of the composite model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
The description of the composite model.
- Parameters:
description- The description of the composite model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
The type of the composite model. For alarm composite models, this type is
AWS/ALARM.- Parameters:
type- The type of the composite model. For alarm composite models, this type isAWS/ALARM.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
properties
AssetModelCompositeModelDefinition.Builder properties(Collection<AssetModelPropertyDefinition> properties) The asset property definitions for this composite model.
- Parameters:
properties- The asset property definitions for this composite model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
properties
The asset property definitions for this composite model.
- Parameters:
properties- The asset property definitions for this composite model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
properties
AssetModelCompositeModelDefinition.Builder properties(Consumer<AssetModelPropertyDefinition.Builder>... properties) The asset property definitions for this composite model.
This is a convenience method that creates an instance of theAssetModelPropertyDefinition.Builderavoiding the need to create one manually viaAssetModelPropertyDefinition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toproperties(List<AssetModelPropertyDefinition>).- Parameters:
properties- a consumer that will call methods onAssetModelPropertyDefinition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-