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