Interface DescribeCertificatesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeCertificatesResponse.Builder,DescribeCertificatesResponse>,RdsResponse.Builder,SdkBuilder<DescribeCertificatesResponse.Builder,DescribeCertificatesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeCertificatesResponse
public static interface DescribeCertificatesResponse.Builder extends RdsResponse.Builder, SdkPojo, CopyableBuilder<DescribeCertificatesResponse.Builder,DescribeCertificatesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeCertificatesResponse.Buildercertificates(Collection<Certificate> certificates)The list ofCertificateobjects for the Amazon Web Services account.DescribeCertificatesResponse.Buildercertificates(Consumer<Certificate.Builder>... certificates)The list ofCertificateobjects for the Amazon Web Services account.DescribeCertificatesResponse.Buildercertificates(Certificate... certificates)The list ofCertificateobjects for the Amazon Web Services account.DescribeCertificatesResponse.BuilderdefaultCertificateForNewLaunches(String defaultCertificateForNewLaunches)The default root CA for new databases created by your Amazon Web Services account.DescribeCertificatesResponse.Buildermarker(String marker)An optional pagination token provided by a previousDescribeCertificatesrequest.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.rds.model.RdsResponse.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
-
defaultCertificateForNewLaunches
DescribeCertificatesResponse.Builder defaultCertificateForNewLaunches(String defaultCertificateForNewLaunches)
The default root CA for new databases created by your Amazon Web Services account. This is either the root CA override set on your Amazon Web Services account or the system default CA for the Region if no override exists. To override the default CA, use the
ModifyCertificatesoperation.- Parameters:
defaultCertificateForNewLaunches- The default root CA for new databases created by your Amazon Web Services account. This is either the root CA override set on your Amazon Web Services account or the system default CA for the Region if no override exists. To override the default CA, use theModifyCertificatesoperation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificates
DescribeCertificatesResponse.Builder certificates(Collection<Certificate> certificates)
The list of
Certificateobjects for the Amazon Web Services account.- Parameters:
certificates- The list ofCertificateobjects for the Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificates
DescribeCertificatesResponse.Builder certificates(Certificate... certificates)
The list of
Certificateobjects for the Amazon Web Services account.- Parameters:
certificates- The list ofCertificateobjects for the Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificates
DescribeCertificatesResponse.Builder certificates(Consumer<Certificate.Builder>... certificates)
The list of
This is a convenience method that creates an instance of theCertificateobjects for the Amazon Web Services account.Certificate.Builderavoiding the need to create one manually viaCertificate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#certificates(List.) - Parameters:
certificates- a consumer that will call methods onCertificate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#certificates(java.util.Collection)
-
marker
DescribeCertificatesResponse.Builder marker(String marker)
An optional pagination token provided by a previous
DescribeCertificatesrequest. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords.- Parameters:
marker- An optional pagination token provided by a previousDescribeCertificatesrequest. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-