Interface ListParentsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListParentsResponse.Builder,ListParentsResponse>,OrganizationsResponse.Builder,SdkBuilder<ListParentsResponse.Builder,ListParentsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListParentsResponse
public static interface ListParentsResponse.Builder extends OrganizationsResponse.Builder, SdkPojo, CopyableBuilder<ListParentsResponse.Builder,ListParentsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListParentsResponse.BuildernextToken(String nextToken)If present, indicates that more output is available than is included in the current response.ListParentsResponse.Builderparents(Collection<Parent> parents)A list of parents for the specified child account or OU.ListParentsResponse.Builderparents(Consumer<Parent.Builder>... parents)A list of parents for the specified child account or OU.ListParentsResponse.Builderparents(Parent... parents)A list of parents for the specified child account or OU.-
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
-
parents
ListParentsResponse.Builder parents(Collection<Parent> parents)
A list of parents for the specified child account or OU.
- Parameters:
parents- A list of parents for the specified child account or OU.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parents
ListParentsResponse.Builder parents(Parent... parents)
A list of parents for the specified child account or OU.
- Parameters:
parents- A list of parents for the specified child account or OU.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parents
ListParentsResponse.Builder parents(Consumer<Parent.Builder>... parents)
A list of parents for the specified child account or OU.
This is a convenience method that creates an instance of theParent.Builderavoiding the need to create one manually viaParent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#parents(List.) - Parameters:
parents- a consumer that will call methods onParent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#parents(java.util.Collection)
-
nextToken
ListParentsResponse.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.
-
-