Interface ListCertificateAuthoritiesResponse.Builder
-
- All Superinterfaces:
AcmPcaResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListCertificateAuthoritiesResponse.Builder,ListCertificateAuthoritiesResponse>,SdkBuilder<ListCertificateAuthoritiesResponse.Builder,ListCertificateAuthoritiesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListCertificateAuthoritiesResponse
public static interface ListCertificateAuthoritiesResponse.Builder extends AcmPcaResponse.Builder, SdkPojo, CopyableBuilder<ListCertificateAuthoritiesResponse.Builder,ListCertificateAuthoritiesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCertificateAuthoritiesResponse.BuildercertificateAuthorities(Collection<CertificateAuthority> certificateAuthorities)Summary information about each certificate authority you have created.ListCertificateAuthoritiesResponse.BuildercertificateAuthorities(Consumer<CertificateAuthority.Builder>... certificateAuthorities)Summary information about each certificate authority you have created.ListCertificateAuthoritiesResponse.BuildercertificateAuthorities(CertificateAuthority... certificateAuthorities)Summary information about each certificate authority you have created.ListCertificateAuthoritiesResponse.BuildernextToken(String nextToken)When the list is truncated, this value is present and should be used for theNextTokenparameter in a subsequent pagination request.-
Methods inherited from interface software.amazon.awssdk.services.acmpca.model.AcmPcaResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
nextToken
ListCertificateAuthoritiesResponse.Builder nextToken(String nextToken)
When the list is truncated, this value is present and should be used for the
NextTokenparameter in a subsequent pagination request.- Parameters:
nextToken- When the list is truncated, this value is present and should be used for theNextTokenparameter in a subsequent pagination request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateAuthorities
ListCertificateAuthoritiesResponse.Builder certificateAuthorities(Collection<CertificateAuthority> certificateAuthorities)
Summary information about each certificate authority you have created.
- Parameters:
certificateAuthorities- Summary information about each certificate authority you have created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateAuthorities
ListCertificateAuthoritiesResponse.Builder certificateAuthorities(CertificateAuthority... certificateAuthorities)
Summary information about each certificate authority you have created.
- Parameters:
certificateAuthorities- Summary information about each certificate authority you have created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateAuthorities
ListCertificateAuthoritiesResponse.Builder certificateAuthorities(Consumer<CertificateAuthority.Builder>... certificateAuthorities)
Summary information about each certificate authority you have created.
This is a convenience method that creates an instance of theCertificateAuthority.Builderavoiding the need to create one manually viaCertificateAuthority.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#certificateAuthorities(List.) - Parameters:
certificateAuthorities- a consumer that will call methods onCertificateAuthority.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#certificateAuthorities(java.util.Collection)
-
-