Interface ListTargetsForPolicyResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListTargetsForPolicyResponse.Builder,ListTargetsForPolicyResponse>,OrganizationsResponse.Builder,SdkBuilder<ListTargetsForPolicyResponse.Builder,ListTargetsForPolicyResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTargetsForPolicyResponse
public static interface ListTargetsForPolicyResponse.Builder extends OrganizationsResponse.Builder, SdkPojo, CopyableBuilder<ListTargetsForPolicyResponse.Builder,ListTargetsForPolicyResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTargetsForPolicyResponse.BuildernextToken(String nextToken)If present, indicates that more output is available than is included in the current response.ListTargetsForPolicyResponse.Buildertargets(Collection<PolicyTargetSummary> targets)A list of structures, each of which contains details about one of the entities to which the specified policy is attached.ListTargetsForPolicyResponse.Buildertargets(Consumer<PolicyTargetSummary.Builder>... targets)A list of structures, each of which contains details about one of the entities to which the specified policy is attached.ListTargetsForPolicyResponse.Buildertargets(PolicyTargetSummary... targets)A list of structures, each of which contains details about one of the entities to which the specified policy is attached.-
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
-
targets
ListTargetsForPolicyResponse.Builder targets(Collection<PolicyTargetSummary> targets)
A list of structures, each of which contains details about one of the entities to which the specified policy is attached.
- Parameters:
targets- A list of structures, each of which contains details about one of the entities to which the specified policy is attached.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targets
ListTargetsForPolicyResponse.Builder targets(PolicyTargetSummary... targets)
A list of structures, each of which contains details about one of the entities to which the specified policy is attached.
- Parameters:
targets- A list of structures, each of which contains details about one of the entities to which the specified policy is attached.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targets
ListTargetsForPolicyResponse.Builder targets(Consumer<PolicyTargetSummary.Builder>... targets)
A list of structures, each of which contains details about one of the entities to which the specified policy is attached.
This is a convenience method that creates an instance of thePolicyTargetSummary.Builderavoiding the need to create one manually viaPolicyTargetSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#targets(List.) - Parameters:
targets- a consumer that will call methods onPolicyTargetSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#targets(java.util.Collection)
-
nextToken
ListTargetsForPolicyResponse.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.
-
-