Interface ListCertificatesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListCertificatesResponse.Builder,ListCertificatesResponse>
,IotResponse.Builder
,SdkBuilder<ListCertificatesResponse.Builder,ListCertificatesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListCertificatesResponse
public static interface ListCertificatesResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<ListCertificatesResponse.Builder,ListCertificatesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCertificatesResponse.Builder
certificates(Collection<Certificate> certificates)
The descriptions of the certificates.ListCertificatesResponse.Builder
certificates(Consumer<Certificate.Builder>... certificates)
The descriptions of the certificates.ListCertificatesResponse.Builder
certificates(Certificate... certificates)
The descriptions of the certificates.ListCertificatesResponse.Builder
nextMarker(String nextMarker)
The marker for the next set of results, or null if there are no additional results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iot.model.IotResponse.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
-
certificates
ListCertificatesResponse.Builder certificates(Collection<Certificate> certificates)
The descriptions of the certificates.
- Parameters:
certificates
- The descriptions of the certificates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificates
ListCertificatesResponse.Builder certificates(Certificate... certificates)
The descriptions of the certificates.
- Parameters:
certificates
- The descriptions of the certificates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificates
ListCertificatesResponse.Builder certificates(Consumer<Certificate.Builder>... certificates)
The descriptions of the certificates.
This is a convenience method that creates an instance of theCertificate.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
)
-
nextMarker
ListCertificatesResponse.Builder nextMarker(String nextMarker)
The marker for the next set of results, or null if there are no additional results.
- Parameters:
nextMarker
- The marker for the next set of results, or null if there are no additional results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-