Interface ListOutgoingCertificatesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListOutgoingCertificatesResponse.Builder,ListOutgoingCertificatesResponse>
,IotResponse.Builder
,SdkBuilder<ListOutgoingCertificatesResponse.Builder,ListOutgoingCertificatesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListOutgoingCertificatesResponse
public static interface ListOutgoingCertificatesResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<ListOutgoingCertificatesResponse.Builder,ListOutgoingCertificatesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListOutgoingCertificatesResponse.Builder
nextMarker(String nextMarker)
The marker for the next set of results.ListOutgoingCertificatesResponse.Builder
outgoingCertificates(Collection<OutgoingCertificate> outgoingCertificates)
The certificates that are being transferred but not yet accepted.ListOutgoingCertificatesResponse.Builder
outgoingCertificates(Consumer<OutgoingCertificate.Builder>... outgoingCertificates)
The certificates that are being transferred but not yet accepted.ListOutgoingCertificatesResponse.Builder
outgoingCertificates(OutgoingCertificate... outgoingCertificates)
The certificates that are being transferred but not yet accepted.-
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
-
outgoingCertificates
ListOutgoingCertificatesResponse.Builder outgoingCertificates(Collection<OutgoingCertificate> outgoingCertificates)
The certificates that are being transferred but not yet accepted.
- Parameters:
outgoingCertificates
- The certificates that are being transferred but not yet accepted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outgoingCertificates
ListOutgoingCertificatesResponse.Builder outgoingCertificates(OutgoingCertificate... outgoingCertificates)
The certificates that are being transferred but not yet accepted.
- Parameters:
outgoingCertificates
- The certificates that are being transferred but not yet accepted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outgoingCertificates
ListOutgoingCertificatesResponse.Builder outgoingCertificates(Consumer<OutgoingCertificate.Builder>... outgoingCertificates)
The certificates that are being transferred but not yet accepted.
This is a convenience method that creates an instance of theOutgoingCertificate.Builder
avoiding the need to create one manually viaOutgoingCertificate.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#outgoingCertificates(List
.) - Parameters:
outgoingCertificates
- a consumer that will call methods onOutgoingCertificate.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#outgoingCertificates(java.util.Collection
)
-
nextMarker
ListOutgoingCertificatesResponse.Builder nextMarker(String nextMarker)
The marker for the next set of results.
- Parameters:
nextMarker
- The marker for the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-