Interface ListCertificateProvidersResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListCertificateProvidersResponse.Builder,ListCertificateProvidersResponse>
,IotResponse.Builder
,SdkBuilder<ListCertificateProvidersResponse.Builder,ListCertificateProvidersResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListCertificateProvidersResponse
public static interface ListCertificateProvidersResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<ListCertificateProvidersResponse.Builder,ListCertificateProvidersResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCertificateProvidersResponse.Builder
certificateProviders(Collection<CertificateProviderSummary> certificateProviders)
The list of certificate providers in your Amazon Web Services account.ListCertificateProvidersResponse.Builder
certificateProviders(Consumer<CertificateProviderSummary.Builder>... certificateProviders)
The list of certificate providers in your Amazon Web Services account.ListCertificateProvidersResponse.Builder
certificateProviders(CertificateProviderSummary... certificateProviders)
The list of certificate providers in your Amazon Web Services account.ListCertificateProvidersResponse.Builder
nextToken(String nextToken)
The token for the next set of results, ornull
if there are no more 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
-
certificateProviders
ListCertificateProvidersResponse.Builder certificateProviders(Collection<CertificateProviderSummary> certificateProviders)
The list of certificate providers in your Amazon Web Services account.
- Parameters:
certificateProviders
- The list of certificate providers in your Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateProviders
ListCertificateProvidersResponse.Builder certificateProviders(CertificateProviderSummary... certificateProviders)
The list of certificate providers in your Amazon Web Services account.
- Parameters:
certificateProviders
- The list of certificate providers in your Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateProviders
ListCertificateProvidersResponse.Builder certificateProviders(Consumer<CertificateProviderSummary.Builder>... certificateProviders)
The list of certificate providers in your Amazon Web Services account.
This is a convenience method that creates an instance of theCertificateProviderSummary.Builder
avoiding the need to create one manually viaCertificateProviderSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#certificateProviders(List
.) - Parameters:
certificateProviders
- a consumer that will call methods onCertificateProviderSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#certificateProviders(java.util.Collection
)
-
nextToken
ListCertificateProvidersResponse.Builder nextToken(String nextToken)
The token for the next set of results, or
null
if there are no more results.- Parameters:
nextToken
- The token for the next set of results, ornull
if there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-