Interface ListPolicyGrantsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListPolicyGrantsResponse.Builder,ListPolicyGrantsResponse>,DataZoneResponse.Builder,SdkBuilder<ListPolicyGrantsResponse.Builder,ListPolicyGrantsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListPolicyGrantsResponse
public static interface ListPolicyGrantsResponse.Builder extends DataZoneResponse.Builder, SdkPojo, CopyableBuilder<ListPolicyGrantsResponse.Builder,ListPolicyGrantsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPolicyGrantsResponse.BuildergrantList(Collection<PolicyGrantMember> grantList)The results of this action - the listed grants.ListPolicyGrantsResponse.BuildergrantList(Consumer<PolicyGrantMember.Builder>... grantList)The results of this action - the listed grants.ListPolicyGrantsResponse.BuildergrantList(PolicyGrantMember... grantList)The results of this action - the listed grants.ListPolicyGrantsResponse.BuildernextToken(String nextToken)When the number of grants is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of grants, the response includes a pagination token namedNextToken.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.datazone.model.DataZoneResponse.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
-
grantList
ListPolicyGrantsResponse.Builder grantList(Collection<PolicyGrantMember> grantList)
The results of this action - the listed grants.
- Parameters:
grantList- The results of this action - the listed grants.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
grantList
ListPolicyGrantsResponse.Builder grantList(PolicyGrantMember... grantList)
The results of this action - the listed grants.
- Parameters:
grantList- The results of this action - the listed grants.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
grantList
ListPolicyGrantsResponse.Builder grantList(Consumer<PolicyGrantMember.Builder>... grantList)
The results of this action - the listed grants.
This is a convenience method that creates an instance of thePolicyGrantMember.Builderavoiding the need to create one manually viaPolicyGrantMember.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#grantList(List.) - Parameters:
grantList- a consumer that will call methods onPolicyGrantMember.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#grantList(java.util.Collection)
-
nextToken
ListPolicyGrantsResponse.Builder nextToken(String nextToken)
When the number of grants is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of grants, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toListPolicyGrantsto list the next set of grants.- Parameters:
nextToken- When the number of grants is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of grants, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toListPolicyGrantsto list the next set of grants.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-