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.Builder
certificates(Collection<Certificate> certificates)
The list ofCertificate
objects for the Amazon Web Services account.DescribeCertificatesResponse.Builder
certificates(Consumer<Certificate.Builder>... certificates)
The list ofCertificate
objects for the Amazon Web Services account.DescribeCertificatesResponse.Builder
certificates(Certificate... certificates)
The list ofCertificate
objects for the Amazon Web Services account.DescribeCertificatesResponse.Builder
defaultCertificateForNewLaunches(String defaultCertificateForNewLaunches)
The default root CA for new databases created by your Amazon Web Services account.DescribeCertificatesResponse.Builder
marker(String marker)
An optional pagination token provided by a previousDescribeCertificates
request.-
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, 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
ModifyCertificates
operation.- 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 theModifyCertificates
operation.- 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
Certificate
objects for the Amazon Web Services account.- Parameters:
certificates
- The list ofCertificate
objects 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
Certificate
objects for the Amazon Web Services account.- Parameters:
certificates
- The list ofCertificate
objects 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 theCertificate
objects for the Amazon Web Services account.Certificate.Builder
avoiding the need to create one manually viaCertificate.builder()
.When the
Consumer
completes,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
DescribeCertificates
request. 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 previousDescribeCertificates
request. 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.
-
-