Interface ListCaCertificatesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListCaCertificatesResponse.Builder,ListCaCertificatesResponse>
,IotResponse.Builder
,SdkBuilder<ListCaCertificatesResponse.Builder,ListCaCertificatesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListCaCertificatesResponse
public static interface ListCaCertificatesResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<ListCaCertificatesResponse.Builder,ListCaCertificatesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCaCertificatesResponse.Builder
certificates(Collection<CACertificate> certificates)
The CA certificates registered in your Amazon Web Services account.ListCaCertificatesResponse.Builder
certificates(Consumer<CACertificate.Builder>... certificates)
The CA certificates registered in your Amazon Web Services account.ListCaCertificatesResponse.Builder
certificates(CACertificate... certificates)
The CA certificates registered in your Amazon Web Services account.ListCaCertificatesResponse.Builder
nextMarker(String nextMarker)
The current position within the list of CA certificates.-
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
ListCaCertificatesResponse.Builder certificates(Collection<CACertificate> certificates)
The CA certificates registered in your Amazon Web Services account.
- Parameters:
certificates
- The CA certificates registered in your Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificates
ListCaCertificatesResponse.Builder certificates(CACertificate... certificates)
The CA certificates registered in your Amazon Web Services account.
- Parameters:
certificates
- The CA certificates registered in your Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificates
ListCaCertificatesResponse.Builder certificates(Consumer<CACertificate.Builder>... certificates)
The CA certificates registered in your Amazon Web Services account.
This is a convenience method that creates an instance of theCACertificate.Builder
avoiding the need to create one manually viaCACertificate.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 onCACertificate.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#certificates(java.util.Collection
)
-
nextMarker
ListCaCertificatesResponse.Builder nextMarker(String nextMarker)
The current position within the list of CA certificates.
- Parameters:
nextMarker
- The current position within the list of CA certificates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-