Interface ListCertificatesByCaResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListCertificatesByCaResponse.Builder,ListCertificatesByCaResponse>
,IotResponse.Builder
,SdkBuilder<ListCertificatesByCaResponse.Builder,ListCertificatesByCaResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListCertificatesByCaResponse
public static interface ListCertificatesByCaResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<ListCertificatesByCaResponse.Builder,ListCertificatesByCaResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCertificatesByCaResponse.Builder
certificates(Collection<Certificate> certificates)
The device certificates signed by the specified CA certificate.ListCertificatesByCaResponse.Builder
certificates(Consumer<Certificate.Builder>... certificates)
The device certificates signed by the specified CA certificate.ListCertificatesByCaResponse.Builder
certificates(Certificate... certificates)
The device certificates signed by the specified CA certificate.ListCertificatesByCaResponse.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
ListCertificatesByCaResponse.Builder certificates(Collection<Certificate> certificates)
The device certificates signed by the specified CA certificate.
- Parameters:
certificates
- The device certificates signed by the specified CA certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificates
ListCertificatesByCaResponse.Builder certificates(Certificate... certificates)
The device certificates signed by the specified CA certificate.
- Parameters:
certificates
- The device certificates signed by the specified CA certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificates
ListCertificatesByCaResponse.Builder certificates(Consumer<Certificate.Builder>... certificates)
The device certificates signed by the specified CA certificate.
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
ListCertificatesByCaResponse.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.
-
-