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