Interface ListCrlsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListCrlsResponse.Builder,ListCrlsResponse>,RolesAnywhereResponse.Builder,SdkBuilder<ListCrlsResponse.Builder,ListCrlsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListCrlsResponse
public static interface ListCrlsResponse.Builder extends RolesAnywhereResponse.Builder, SdkPojo, CopyableBuilder<ListCrlsResponse.Builder,ListCrlsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCrlsResponse.Buildercrls(Collection<CrlDetail> crls)A list of certificate revocation lists (CRL).ListCrlsResponse.Buildercrls(Consumer<CrlDetail.Builder>... crls)A list of certificate revocation lists (CRL).ListCrlsResponse.Buildercrls(CrlDetail... crls)A list of certificate revocation lists (CRL).ListCrlsResponse.BuildernextToken(String nextToken)A token that indicates where the output should continue from, if a previous request did not show all results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.rolesanywhere.model.RolesAnywhereResponse.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
-
crls
ListCrlsResponse.Builder crls(Collection<CrlDetail> crls)
A list of certificate revocation lists (CRL).
- Parameters:
crls- A list of certificate revocation lists (CRL).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
crls
ListCrlsResponse.Builder crls(CrlDetail... crls)
A list of certificate revocation lists (CRL).
- Parameters:
crls- A list of certificate revocation lists (CRL).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
crls
ListCrlsResponse.Builder crls(Consumer<CrlDetail.Builder>... crls)
A list of certificate revocation lists (CRL).
This is a convenience method that creates an instance of theCrlDetail.Builderavoiding the need to create one manually viaCrlDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#crls(List.) - Parameters:
crls- a consumer that will call methods onCrlDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#crls(java.util.Collection)
-
nextToken
ListCrlsResponse.Builder nextToken(String nextToken)
A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.
- Parameters:
nextToken- A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-