Interface HierarchyGroup.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HierarchyGroup.Builder,HierarchyGroup>,SdkBuilder<HierarchyGroup.Builder,HierarchyGroup>,SdkPojo
- Enclosing class:
- HierarchyGroup
public static interface HierarchyGroup.Builder extends SdkPojo, CopyableBuilder<HierarchyGroup.Builder,HierarchyGroup>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description HierarchyGroup.Builderarn(String arn)The Amazon Resource Name (ARN) of the hierarchy group.default HierarchyGroup.BuilderhierarchyPath(Consumer<HierarchyPath.Builder> hierarchyPath)Information about the levels in the hierarchy group.HierarchyGroup.BuilderhierarchyPath(HierarchyPath hierarchyPath)Information about the levels in the hierarchy group.HierarchyGroup.Builderid(String id)The identifier of the hierarchy group.HierarchyGroup.BuilderlastModifiedRegion(String lastModifiedRegion)The Amazon Web Services Region where this resource was last modified.HierarchyGroup.BuilderlastModifiedTime(Instant lastModifiedTime)The timestamp when this resource was last modified.HierarchyGroup.BuilderlevelId(String levelId)The identifier of the level in the hierarchy group.HierarchyGroup.Buildername(String name)The name of the hierarchy group.HierarchyGroup.Buildertags(Map<String,String> tags)The tags used to organize, track, or control access for this resource.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
id
HierarchyGroup.Builder id(String id)
The identifier of the hierarchy group.
- Parameters:
id- The identifier of the hierarchy group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
HierarchyGroup.Builder arn(String arn)
The Amazon Resource Name (ARN) of the hierarchy group.
- Parameters:
arn- The Amazon Resource Name (ARN) of the hierarchy group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
HierarchyGroup.Builder name(String name)
The name of the hierarchy group.
- Parameters:
name- The name of the hierarchy group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
levelId
HierarchyGroup.Builder levelId(String levelId)
The identifier of the level in the hierarchy group.
- Parameters:
levelId- The identifier of the level in the hierarchy group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hierarchyPath
HierarchyGroup.Builder hierarchyPath(HierarchyPath hierarchyPath)
Information about the levels in the hierarchy group.
- Parameters:
hierarchyPath- Information about the levels in the hierarchy group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hierarchyPath
default HierarchyGroup.Builder hierarchyPath(Consumer<HierarchyPath.Builder> hierarchyPath)
Information about the levels in the hierarchy group.
This is a convenience method that creates an instance of theHierarchyPath.Builderavoiding the need to create one manually viaHierarchyPath.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tohierarchyPath(HierarchyPath).- Parameters:
hierarchyPath- a consumer that will call methods onHierarchyPath.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
hierarchyPath(HierarchyPath)
-
tags
HierarchyGroup.Builder tags(Map<String,String> tags)
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
- Parameters:
tags- The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
HierarchyGroup.Builder lastModifiedTime(Instant lastModifiedTime)
The timestamp when this resource was last modified.
- Parameters:
lastModifiedTime- The timestamp when this resource was last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedRegion
HierarchyGroup.Builder lastModifiedRegion(String lastModifiedRegion)
The Amazon Web Services Region where this resource was last modified.
- Parameters:
lastModifiedRegion- The Amazon Web Services Region where this resource was last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-