Interface ListRootsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListRootsResponse.Builder,ListRootsResponse>,OrganizationsResponse.Builder,SdkBuilder<ListRootsResponse.Builder,ListRootsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListRootsResponse
public static interface ListRootsResponse.Builder extends OrganizationsResponse.Builder, SdkPojo, CopyableBuilder<ListRootsResponse.Builder,ListRootsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListRootsResponse.BuildernextToken(String nextToken)If present, indicates that more output is available than is included in the current response.ListRootsResponse.Builderroots(Collection<Root> roots)A list of roots that are defined in an organization.ListRootsResponse.Builderroots(Consumer<Root.Builder>... roots)A list of roots that are defined in an organization.ListRootsResponse.Builderroots(Root... roots)A list of roots that are defined in an organization.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.organizations.model.OrganizationsResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
roots
ListRootsResponse.Builder roots(Collection<Root> roots)
A list of roots that are defined in an organization.
- Parameters:
roots- A list of roots that are defined in an organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
roots
ListRootsResponse.Builder roots(Root... roots)
A list of roots that are defined in an organization.
- Parameters:
roots- A list of roots that are defined in an organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
roots
ListRootsResponse.Builder roots(Consumer<Root.Builder>... roots)
A list of roots that are defined in an organization.
This is a convenience method that creates an instance of theRoot.Builderavoiding the need to create one manually viaRoot.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#roots(List.) - Parameters:
roots- a consumer that will call methods onRoot.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#roots(java.util.Collection)
-
nextToken
ListRootsResponse.Builder nextToken(String nextToken)
If present, indicates that more output is available than is included in the current response. Use this value in the
NextTokenrequest parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until theNextTokenresponse element comes back asnull.- Parameters:
nextToken- If present, indicates that more output is available than is included in the current response. Use this value in theNextTokenrequest parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until theNextTokenresponse element comes back asnull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-