Interface DescribePrincipalIdFormatResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribePrincipalIdFormatResponse.Builder,DescribePrincipalIdFormatResponse>
,Ec2Response.Builder
,SdkBuilder<DescribePrincipalIdFormatResponse.Builder,DescribePrincipalIdFormatResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribePrincipalIdFormatResponse
public static interface DescribePrincipalIdFormatResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribePrincipalIdFormatResponse.Builder,DescribePrincipalIdFormatResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribePrincipalIdFormatResponse.Builder
nextToken(String nextToken)
The token to use to retrieve the next page of results.DescribePrincipalIdFormatResponse.Builder
principals(Collection<PrincipalIdFormat> principals)
Information about the ID format settings for the ARN.DescribePrincipalIdFormatResponse.Builder
principals(Consumer<PrincipalIdFormat.Builder>... principals)
Information about the ID format settings for the ARN.DescribePrincipalIdFormatResponse.Builder
principals(PrincipalIdFormat... principals)
Information about the ID format settings for the ARN.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
principals
DescribePrincipalIdFormatResponse.Builder principals(Collection<PrincipalIdFormat> principals)
Information about the ID format settings for the ARN.
- Parameters:
principals
- Information about the ID format settings for the ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
principals
DescribePrincipalIdFormatResponse.Builder principals(PrincipalIdFormat... principals)
Information about the ID format settings for the ARN.
- Parameters:
principals
- Information about the ID format settings for the ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
principals
DescribePrincipalIdFormatResponse.Builder principals(Consumer<PrincipalIdFormat.Builder>... principals)
Information about the ID format settings for the ARN.
This is a convenience method that creates an instance of thePrincipalIdFormat.Builder
avoiding the need to create one manually viaPrincipalIdFormat.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#principals(List
.) - Parameters:
principals
- a consumer that will call methods onPrincipalIdFormat.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#principals(java.util.Collection
)
-
nextToken
DescribePrincipalIdFormatResponse.Builder nextToken(String nextToken)
The token to use to retrieve the next page of results. This value is null when there are no more results to return.
- Parameters:
nextToken
- The token to use to retrieve the next page of results. This value is null when there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-