Interface IoTAnalyticsAsyncClient

  • All Superinterfaces:
    AutoCloseable, AwsClient, SdkAutoCloseable, SdkClient

    @Generated("software.amazon.awssdk:codegen")
    @ThreadSafe
    public interface IoTAnalyticsAsyncClient
    extends AwsClient
    Service client for accessing AWS IoT Analytics asynchronously. This can be created using the static builder() method.The asynchronous client performs non-blocking I/O when configured with any SdkAsyncHttpClient supported in the SDK. However, full non-blocking is not guaranteed as the async client may perform blocking calls in some cases such as credentials retrieval and endpoint discovery as part of the async API call.

    IoT Analytics allows you to collect large amounts of device data, process messages, and store them. You can then query the data and run sophisticated analytics on it. IoT Analytics enables advanced data exploration through integration with Jupyter Notebooks and data visualization through integration with Amazon QuickSight.

    Traditional analytics and business intelligence tools are designed to process structured data. IoT data often comes from devices that record noisy processes (such as temperature, motion, or sound). As a result the data from these devices can have significant gaps, corrupted messages, and false readings that must be cleaned up before analysis can occur. Also, IoT data is often only meaningful in the context of other data from external sources.

    IoT Analytics automates the steps required to analyze data from IoT devices. IoT Analytics filters, transforms, and enriches IoT data before storing it in a time-series data store for analysis. You can set up the service to collect only the data you need from your devices, apply mathematical transforms to process the data, and enrich the data with device-specific metadata such as device type and location before storing it. Then, you can analyze your data by running queries using the built-in SQL query engine, or perform more complex analytics and machine learning inference. IoT Analytics includes pre-built models for common IoT use cases so you can answer questions like which devices are about to fail or which customers are at risk of abandoning their wearable devices.

    • Method Detail

      • batchPutMessage

        default CompletableFuture<BatchPutMessageResponse> batchPutMessage​(BatchPutMessageRequest batchPutMessageRequest)

        Sends messages to a channel.

        Parameters:
        batchPutMessageRequest -
        Returns:
        A Java Future containing the result of the BatchPutMessage operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • batchPutMessage

        default CompletableFuture<BatchPutMessageResponse> batchPutMessage​(Consumer<BatchPutMessageRequest.Builder> batchPutMessageRequest)

        Sends messages to a channel.


        This is a convenience which creates an instance of the BatchPutMessageRequest.Builder avoiding the need to create one manually via BatchPutMessageRequest.builder()

        Parameters:
        batchPutMessageRequest - A Consumer that will call methods on BatchPutMessageRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the BatchPutMessage operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • cancelPipelineReprocessing

        default CompletableFuture<CancelPipelineReprocessingResponse> cancelPipelineReprocessing​(CancelPipelineReprocessingRequest cancelPipelineReprocessingRequest)

        Cancels the reprocessing of data through the pipeline.

        Parameters:
        cancelPipelineReprocessingRequest -
        Returns:
        A Java Future containing the result of the CancelPipelineReprocessing operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • cancelPipelineReprocessing

        default CompletableFuture<CancelPipelineReprocessingResponse> cancelPipelineReprocessing​(Consumer<CancelPipelineReprocessingRequest.Builder> cancelPipelineReprocessingRequest)

        Cancels the reprocessing of data through the pipeline.


        This is a convenience which creates an instance of the CancelPipelineReprocessingRequest.Builder avoiding the need to create one manually via CancelPipelineReprocessingRequest.builder()

        Parameters:
        cancelPipelineReprocessingRequest - A Consumer that will call methods on CancelPipelineReprocessingRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the CancelPipelineReprocessing operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • createChannel

        default CompletableFuture<CreateChannelResponse> createChannel​(CreateChannelRequest createChannelRequest)

        Used to create a channel. A channel collects data from an MQTT topic and archives the raw, unprocessed messages before publishing the data to a pipeline.

        Parameters:
        createChannelRequest -
        Returns:
        A Java Future containing the result of the CreateChannel operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceAlreadyExistsException A resource with the same name already exists.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • createChannel

        default CompletableFuture<CreateChannelResponse> createChannel​(Consumer<CreateChannelRequest.Builder> createChannelRequest)

        Used to create a channel. A channel collects data from an MQTT topic and archives the raw, unprocessed messages before publishing the data to a pipeline.


        This is a convenience which creates an instance of the CreateChannelRequest.Builder avoiding the need to create one manually via CreateChannelRequest.builder()

        Parameters:
        createChannelRequest - A Consumer that will call methods on CreateChannelRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the CreateChannel operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceAlreadyExistsException A resource with the same name already exists.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • createDataset

        default CompletableFuture<CreateDatasetResponse> createDataset​(CreateDatasetRequest createDatasetRequest)

        Used to create a dataset. A dataset stores data retrieved from a data store by applying a queryAction (a SQL query) or a containerAction (executing a containerized application). This operation creates the skeleton of a dataset. The dataset can be populated manually by calling CreateDatasetContent or automatically according to a trigger you specify.

        Parameters:
        createDatasetRequest -
        Returns:
        A Java Future containing the result of the CreateDataset operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceAlreadyExistsException A resource with the same name already exists.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • createDataset

        default CompletableFuture<CreateDatasetResponse> createDataset​(Consumer<CreateDatasetRequest.Builder> createDatasetRequest)

        Used to create a dataset. A dataset stores data retrieved from a data store by applying a queryAction (a SQL query) or a containerAction (executing a containerized application). This operation creates the skeleton of a dataset. The dataset can be populated manually by calling CreateDatasetContent or automatically according to a trigger you specify.


        This is a convenience which creates an instance of the CreateDatasetRequest.Builder avoiding the need to create one manually via CreateDatasetRequest.builder()

        Parameters:
        createDatasetRequest - A Consumer that will call methods on CreateDatasetRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the CreateDataset operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceAlreadyExistsException A resource with the same name already exists.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • createDatasetContent

        default CompletableFuture<CreateDatasetContentResponse> createDatasetContent​(CreateDatasetContentRequest createDatasetContentRequest)

        Creates the content of a dataset by applying a queryAction (a SQL query) or a containerAction (executing a containerized application).

        Parameters:
        createDatasetContentRequest -
        Returns:
        A Java Future containing the result of the CreateDatasetContent operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • createDatasetContent

        default CompletableFuture<CreateDatasetContentResponse> createDatasetContent​(Consumer<CreateDatasetContentRequest.Builder> createDatasetContentRequest)

        Creates the content of a dataset by applying a queryAction (a SQL query) or a containerAction (executing a containerized application).


        This is a convenience which creates an instance of the CreateDatasetContentRequest.Builder avoiding the need to create one manually via CreateDatasetContentRequest.builder()

        Parameters:
        createDatasetContentRequest - A Consumer that will call methods on CreateDatasetContentRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the CreateDatasetContent operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • createDatastore

        default CompletableFuture<CreateDatastoreResponse> createDatastore​(CreateDatastoreRequest createDatastoreRequest)

        Creates a data store, which is a repository for messages.

        Parameters:
        createDatastoreRequest -
        Returns:
        A Java Future containing the result of the CreateDatastore operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceAlreadyExistsException A resource with the same name already exists.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • createDatastore

        default CompletableFuture<CreateDatastoreResponse> createDatastore​(Consumer<CreateDatastoreRequest.Builder> createDatastoreRequest)

        Creates a data store, which is a repository for messages.


        This is a convenience which creates an instance of the CreateDatastoreRequest.Builder avoiding the need to create one manually via CreateDatastoreRequest.builder()

        Parameters:
        createDatastoreRequest - A Consumer that will call methods on CreateDatastoreRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the CreateDatastore operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceAlreadyExistsException A resource with the same name already exists.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • createPipeline

        default CompletableFuture<CreatePipelineResponse> createPipeline​(CreatePipelineRequest createPipelineRequest)

        Creates a pipeline. A pipeline consumes messages from a channel and allows you to process the messages before storing them in a data store. You must specify both a channel and a datastore activity and, optionally, as many as 23 additional activities in the pipelineActivities array.

        Parameters:
        createPipelineRequest -
        Returns:
        A Java Future containing the result of the CreatePipeline operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceAlreadyExistsException A resource with the same name already exists.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • createPipeline

        default CompletableFuture<CreatePipelineResponse> createPipeline​(Consumer<CreatePipelineRequest.Builder> createPipelineRequest)

        Creates a pipeline. A pipeline consumes messages from a channel and allows you to process the messages before storing them in a data store. You must specify both a channel and a datastore activity and, optionally, as many as 23 additional activities in the pipelineActivities array.


        This is a convenience which creates an instance of the CreatePipelineRequest.Builder avoiding the need to create one manually via CreatePipelineRequest.builder()

        Parameters:
        createPipelineRequest - A Consumer that will call methods on CreatePipelineRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the CreatePipeline operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceAlreadyExistsException A resource with the same name already exists.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • deleteChannel

        default CompletableFuture<DeleteChannelResponse> deleteChannel​(DeleteChannelRequest deleteChannelRequest)

        Deletes the specified channel.

        Parameters:
        deleteChannelRequest -
        Returns:
        A Java Future containing the result of the DeleteChannel operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • deleteChannel

        default CompletableFuture<DeleteChannelResponse> deleteChannel​(Consumer<DeleteChannelRequest.Builder> deleteChannelRequest)

        Deletes the specified channel.


        This is a convenience which creates an instance of the DeleteChannelRequest.Builder avoiding the need to create one manually via DeleteChannelRequest.builder()

        Parameters:
        deleteChannelRequest - A Consumer that will call methods on DeleteChannelRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the DeleteChannel operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • deleteDataset

        default CompletableFuture<DeleteDatasetResponse> deleteDataset​(DeleteDatasetRequest deleteDatasetRequest)

        Deletes the specified dataset.

        You do not have to delete the content of the dataset before you perform this operation.

        Parameters:
        deleteDatasetRequest -
        Returns:
        A Java Future containing the result of the DeleteDataset operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • deleteDataset

        default CompletableFuture<DeleteDatasetResponse> deleteDataset​(Consumer<DeleteDatasetRequest.Builder> deleteDatasetRequest)

        Deletes the specified dataset.

        You do not have to delete the content of the dataset before you perform this operation.


        This is a convenience which creates an instance of the DeleteDatasetRequest.Builder avoiding the need to create one manually via DeleteDatasetRequest.builder()

        Parameters:
        deleteDatasetRequest - A Consumer that will call methods on DeleteDatasetRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the DeleteDataset operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • deleteDatasetContent

        default CompletableFuture<DeleteDatasetContentResponse> deleteDatasetContent​(DeleteDatasetContentRequest deleteDatasetContentRequest)

        Deletes the content of the specified dataset.

        Parameters:
        deleteDatasetContentRequest -
        Returns:
        A Java Future containing the result of the DeleteDatasetContent operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • deleteDatasetContent

        default CompletableFuture<DeleteDatasetContentResponse> deleteDatasetContent​(Consumer<DeleteDatasetContentRequest.Builder> deleteDatasetContentRequest)

        Deletes the content of the specified dataset.


        This is a convenience which creates an instance of the DeleteDatasetContentRequest.Builder avoiding the need to create one manually via DeleteDatasetContentRequest.builder()

        Parameters:
        deleteDatasetContentRequest - A Consumer that will call methods on DeleteDatasetContentRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the DeleteDatasetContent operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • deleteDatastore

        default CompletableFuture<DeleteDatastoreResponse> deleteDatastore​(DeleteDatastoreRequest deleteDatastoreRequest)

        Deletes the specified data store.

        Parameters:
        deleteDatastoreRequest -
        Returns:
        A Java Future containing the result of the DeleteDatastore operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • deleteDatastore

        default CompletableFuture<DeleteDatastoreResponse> deleteDatastore​(Consumer<DeleteDatastoreRequest.Builder> deleteDatastoreRequest)

        Deletes the specified data store.


        This is a convenience which creates an instance of the DeleteDatastoreRequest.Builder avoiding the need to create one manually via DeleteDatastoreRequest.builder()

        Parameters:
        deleteDatastoreRequest - A Consumer that will call methods on DeleteDatastoreRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the DeleteDatastore operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • deletePipeline

        default CompletableFuture<DeletePipelineResponse> deletePipeline​(DeletePipelineRequest deletePipelineRequest)

        Deletes the specified pipeline.

        Parameters:
        deletePipelineRequest -
        Returns:
        A Java Future containing the result of the DeletePipeline operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • deletePipeline

        default CompletableFuture<DeletePipelineResponse> deletePipeline​(Consumer<DeletePipelineRequest.Builder> deletePipelineRequest)

        Deletes the specified pipeline.


        This is a convenience which creates an instance of the DeletePipelineRequest.Builder avoiding the need to create one manually via DeletePipelineRequest.builder()

        Parameters:
        deletePipelineRequest - A Consumer that will call methods on DeletePipelineRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the DeletePipeline operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • describeChannel

        default CompletableFuture<DescribeChannelResponse> describeChannel​(DescribeChannelRequest describeChannelRequest)

        Retrieves information about a channel.

        Parameters:
        describeChannelRequest -
        Returns:
        A Java Future containing the result of the DescribeChannel operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • describeChannel

        default CompletableFuture<DescribeChannelResponse> describeChannel​(Consumer<DescribeChannelRequest.Builder> describeChannelRequest)

        Retrieves information about a channel.


        This is a convenience which creates an instance of the DescribeChannelRequest.Builder avoiding the need to create one manually via DescribeChannelRequest.builder()

        Parameters:
        describeChannelRequest - A Consumer that will call methods on DescribeChannelRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the DescribeChannel operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • describeDataset

        default CompletableFuture<DescribeDatasetResponse> describeDataset​(DescribeDatasetRequest describeDatasetRequest)

        Retrieves information about a dataset.

        Parameters:
        describeDatasetRequest -
        Returns:
        A Java Future containing the result of the DescribeDataset operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • describeDataset

        default CompletableFuture<DescribeDatasetResponse> describeDataset​(Consumer<DescribeDatasetRequest.Builder> describeDatasetRequest)

        Retrieves information about a dataset.


        This is a convenience which creates an instance of the DescribeDatasetRequest.Builder avoiding the need to create one manually via DescribeDatasetRequest.builder()

        Parameters:
        describeDatasetRequest - A Consumer that will call methods on DescribeDatasetRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the DescribeDataset operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • describeDatastore

        default CompletableFuture<DescribeDatastoreResponse> describeDatastore​(DescribeDatastoreRequest describeDatastoreRequest)

        Retrieves information about a data store.

        Parameters:
        describeDatastoreRequest -
        Returns:
        A Java Future containing the result of the DescribeDatastore operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • describeDatastore

        default CompletableFuture<DescribeDatastoreResponse> describeDatastore​(Consumer<DescribeDatastoreRequest.Builder> describeDatastoreRequest)

        Retrieves information about a data store.


        This is a convenience which creates an instance of the DescribeDatastoreRequest.Builder avoiding the need to create one manually via DescribeDatastoreRequest.builder()

        Parameters:
        describeDatastoreRequest - A Consumer that will call methods on DescribeDatastoreRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the DescribeDatastore operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • describeLoggingOptions

        default CompletableFuture<DescribeLoggingOptionsResponse> describeLoggingOptions​(DescribeLoggingOptionsRequest describeLoggingOptionsRequest)

        Retrieves the current settings of the IoT Analytics logging options.

        Parameters:
        describeLoggingOptionsRequest -
        Returns:
        A Java Future containing the result of the DescribeLoggingOptions operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • describeLoggingOptions

        default CompletableFuture<DescribeLoggingOptionsResponse> describeLoggingOptions​(Consumer<DescribeLoggingOptionsRequest.Builder> describeLoggingOptionsRequest)

        Retrieves the current settings of the IoT Analytics logging options.


        This is a convenience which creates an instance of the DescribeLoggingOptionsRequest.Builder avoiding the need to create one manually via DescribeLoggingOptionsRequest.builder()

        Parameters:
        describeLoggingOptionsRequest - A Consumer that will call methods on DescribeLoggingOptionsRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the DescribeLoggingOptions operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • describePipeline

        default CompletableFuture<DescribePipelineResponse> describePipeline​(DescribePipelineRequest describePipelineRequest)

        Retrieves information about a pipeline.

        Parameters:
        describePipelineRequest -
        Returns:
        A Java Future containing the result of the DescribePipeline operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • describePipeline

        default CompletableFuture<DescribePipelineResponse> describePipeline​(Consumer<DescribePipelineRequest.Builder> describePipelineRequest)

        Retrieves information about a pipeline.


        This is a convenience which creates an instance of the DescribePipelineRequest.Builder avoiding the need to create one manually via DescribePipelineRequest.builder()

        Parameters:
        describePipelineRequest - A Consumer that will call methods on DescribePipelineRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the DescribePipeline operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • getDatasetContent

        default CompletableFuture<GetDatasetContentResponse> getDatasetContent​(GetDatasetContentRequest getDatasetContentRequest)

        Retrieves the contents of a dataset as presigned URIs.

        Parameters:
        getDatasetContentRequest -
        Returns:
        A Java Future containing the result of the GetDatasetContent operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • getDatasetContent

        default CompletableFuture<GetDatasetContentResponse> getDatasetContent​(Consumer<GetDatasetContentRequest.Builder> getDatasetContentRequest)

        Retrieves the contents of a dataset as presigned URIs.


        This is a convenience which creates an instance of the GetDatasetContentRequest.Builder avoiding the need to create one manually via GetDatasetContentRequest.builder()

        Parameters:
        getDatasetContentRequest - A Consumer that will call methods on GetDatasetContentRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the GetDatasetContent operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listChannels

        default CompletableFuture<ListChannelsResponse> listChannels​(ListChannelsRequest listChannelsRequest)

        Retrieves a list of channels.

        Parameters:
        listChannelsRequest -
        Returns:
        A Java Future containing the result of the ListChannels operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listChannels

        default CompletableFuture<ListChannelsResponse> listChannels​(Consumer<ListChannelsRequest.Builder> listChannelsRequest)

        Retrieves a list of channels.


        This is a convenience which creates an instance of the ListChannelsRequest.Builder avoiding the need to create one manually via ListChannelsRequest.builder()

        Parameters:
        listChannelsRequest - A Consumer that will call methods on ListChannelsRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the ListChannels operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listChannels

        default CompletableFuture<ListChannelsResponse> listChannels()

        Retrieves a list of channels.

        Returns:
        A Java Future containing the result of the ListChannels operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listChannelsPaginator

        default ListChannelsPublisher listChannelsPaginator()

        This is a variant of listChannels(software.amazon.awssdk.services.iotanalytics.model.ListChannelsRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListChannelsPublisher publisher = client.listChannelsPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListChannelsPublisher publisher = client.listChannelsPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListChannelsResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListChannelsResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listChannels(software.amazon.awssdk.services.iotanalytics.model.ListChannelsRequest) operation.

        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listChannelsPaginator

        default ListChannelsPublisher listChannelsPaginator​(ListChannelsRequest listChannelsRequest)

        This is a variant of listChannels(software.amazon.awssdk.services.iotanalytics.model.ListChannelsRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListChannelsPublisher publisher = client.listChannelsPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListChannelsPublisher publisher = client.listChannelsPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListChannelsResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListChannelsResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listChannels(software.amazon.awssdk.services.iotanalytics.model.ListChannelsRequest) operation.

        Parameters:
        listChannelsRequest -
        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listChannelsPaginator

        default ListChannelsPublisher listChannelsPaginator​(Consumer<ListChannelsRequest.Builder> listChannelsRequest)

        This is a variant of listChannels(software.amazon.awssdk.services.iotanalytics.model.ListChannelsRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListChannelsPublisher publisher = client.listChannelsPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListChannelsPublisher publisher = client.listChannelsPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListChannelsResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListChannelsResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listChannels(software.amazon.awssdk.services.iotanalytics.model.ListChannelsRequest) operation.


        This is a convenience which creates an instance of the ListChannelsRequest.Builder avoiding the need to create one manually via ListChannelsRequest.builder()

        Parameters:
        listChannelsRequest - A Consumer that will call methods on ListChannelsRequest.Builder to create a request.
        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatasetContents

        default CompletableFuture<ListDatasetContentsResponse> listDatasetContents​(ListDatasetContentsRequest listDatasetContentsRequest)

        Lists information about dataset contents that have been created.

        Parameters:
        listDatasetContentsRequest -
        Returns:
        A Java Future containing the result of the ListDatasetContents operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatasetContents

        default CompletableFuture<ListDatasetContentsResponse> listDatasetContents​(Consumer<ListDatasetContentsRequest.Builder> listDatasetContentsRequest)

        Lists information about dataset contents that have been created.


        This is a convenience which creates an instance of the ListDatasetContentsRequest.Builder avoiding the need to create one manually via ListDatasetContentsRequest.builder()

        Parameters:
        listDatasetContentsRequest - A Consumer that will call methods on ListDatasetContentsRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the ListDatasetContents operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatasetContentsPaginator

        default ListDatasetContentsPublisher listDatasetContentsPaginator​(ListDatasetContentsRequest listDatasetContentsRequest)

        This is a variant of listDatasetContents(software.amazon.awssdk.services.iotanalytics.model.ListDatasetContentsRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatasetContentsPublisher publisher = client.listDatasetContentsPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatasetContentsPublisher publisher = client.listDatasetContentsPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListDatasetContentsResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListDatasetContentsResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listDatasetContents(software.amazon.awssdk.services.iotanalytics.model.ListDatasetContentsRequest) operation.

        Parameters:
        listDatasetContentsRequest -
        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatasetContentsPaginator

        default ListDatasetContentsPublisher listDatasetContentsPaginator​(Consumer<ListDatasetContentsRequest.Builder> listDatasetContentsRequest)

        This is a variant of listDatasetContents(software.amazon.awssdk.services.iotanalytics.model.ListDatasetContentsRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatasetContentsPublisher publisher = client.listDatasetContentsPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatasetContentsPublisher publisher = client.listDatasetContentsPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListDatasetContentsResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListDatasetContentsResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listDatasetContents(software.amazon.awssdk.services.iotanalytics.model.ListDatasetContentsRequest) operation.


        This is a convenience which creates an instance of the ListDatasetContentsRequest.Builder avoiding the need to create one manually via ListDatasetContentsRequest.builder()

        Parameters:
        listDatasetContentsRequest - A Consumer that will call methods on ListDatasetContentsRequest.Builder to create a request.
        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatasets

        default CompletableFuture<ListDatasetsResponse> listDatasets​(ListDatasetsRequest listDatasetsRequest)

        Retrieves information about datasets.

        Parameters:
        listDatasetsRequest -
        Returns:
        A Java Future containing the result of the ListDatasets operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatasets

        default CompletableFuture<ListDatasetsResponse> listDatasets​(Consumer<ListDatasetsRequest.Builder> listDatasetsRequest)

        Retrieves information about datasets.


        This is a convenience which creates an instance of the ListDatasetsRequest.Builder avoiding the need to create one manually via ListDatasetsRequest.builder()

        Parameters:
        listDatasetsRequest - A Consumer that will call methods on ListDatasetsRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the ListDatasets operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatasets

        default CompletableFuture<ListDatasetsResponse> listDatasets()

        Retrieves information about datasets.

        Returns:
        A Java Future containing the result of the ListDatasets operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatasetsPaginator

        default ListDatasetsPublisher listDatasetsPaginator()

        This is a variant of listDatasets(software.amazon.awssdk.services.iotanalytics.model.ListDatasetsRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatasetsPublisher publisher = client.listDatasetsPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatasetsPublisher publisher = client.listDatasetsPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListDatasetsResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListDatasetsResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listDatasets(software.amazon.awssdk.services.iotanalytics.model.ListDatasetsRequest) operation.

        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatasetsPaginator

        default ListDatasetsPublisher listDatasetsPaginator​(ListDatasetsRequest listDatasetsRequest)

        This is a variant of listDatasets(software.amazon.awssdk.services.iotanalytics.model.ListDatasetsRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatasetsPublisher publisher = client.listDatasetsPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatasetsPublisher publisher = client.listDatasetsPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListDatasetsResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListDatasetsResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listDatasets(software.amazon.awssdk.services.iotanalytics.model.ListDatasetsRequest) operation.

        Parameters:
        listDatasetsRequest -
        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatasetsPaginator

        default ListDatasetsPublisher listDatasetsPaginator​(Consumer<ListDatasetsRequest.Builder> listDatasetsRequest)

        This is a variant of listDatasets(software.amazon.awssdk.services.iotanalytics.model.ListDatasetsRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatasetsPublisher publisher = client.listDatasetsPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatasetsPublisher publisher = client.listDatasetsPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListDatasetsResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListDatasetsResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listDatasets(software.amazon.awssdk.services.iotanalytics.model.ListDatasetsRequest) operation.


        This is a convenience which creates an instance of the ListDatasetsRequest.Builder avoiding the need to create one manually via ListDatasetsRequest.builder()

        Parameters:
        listDatasetsRequest - A Consumer that will call methods on ListDatasetsRequest.Builder to create a request.
        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatastores

        default CompletableFuture<ListDatastoresResponse> listDatastores​(ListDatastoresRequest listDatastoresRequest)

        Retrieves a list of data stores.

        Parameters:
        listDatastoresRequest -
        Returns:
        A Java Future containing the result of the ListDatastores operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatastores

        default CompletableFuture<ListDatastoresResponse> listDatastores​(Consumer<ListDatastoresRequest.Builder> listDatastoresRequest)

        Retrieves a list of data stores.


        This is a convenience which creates an instance of the ListDatastoresRequest.Builder avoiding the need to create one manually via ListDatastoresRequest.builder()

        Parameters:
        listDatastoresRequest - A Consumer that will call methods on ListDatastoresRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the ListDatastores operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatastores

        default CompletableFuture<ListDatastoresResponse> listDatastores()

        Retrieves a list of data stores.

        Returns:
        A Java Future containing the result of the ListDatastores operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatastoresPaginator

        default ListDatastoresPublisher listDatastoresPaginator()

        This is a variant of listDatastores(software.amazon.awssdk.services.iotanalytics.model.ListDatastoresRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatastoresPublisher publisher = client.listDatastoresPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatastoresPublisher publisher = client.listDatastoresPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListDatastoresResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListDatastoresResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listDatastores(software.amazon.awssdk.services.iotanalytics.model.ListDatastoresRequest) operation.

        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatastoresPaginator

        default ListDatastoresPublisher listDatastoresPaginator​(ListDatastoresRequest listDatastoresRequest)

        This is a variant of listDatastores(software.amazon.awssdk.services.iotanalytics.model.ListDatastoresRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatastoresPublisher publisher = client.listDatastoresPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatastoresPublisher publisher = client.listDatastoresPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListDatastoresResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListDatastoresResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listDatastores(software.amazon.awssdk.services.iotanalytics.model.ListDatastoresRequest) operation.

        Parameters:
        listDatastoresRequest -
        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listDatastoresPaginator

        default ListDatastoresPublisher listDatastoresPaginator​(Consumer<ListDatastoresRequest.Builder> listDatastoresRequest)

        This is a variant of listDatastores(software.amazon.awssdk.services.iotanalytics.model.ListDatastoresRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatastoresPublisher publisher = client.listDatastoresPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListDatastoresPublisher publisher = client.listDatastoresPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListDatastoresResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListDatastoresResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listDatastores(software.amazon.awssdk.services.iotanalytics.model.ListDatastoresRequest) operation.


        This is a convenience which creates an instance of the ListDatastoresRequest.Builder avoiding the need to create one manually via ListDatastoresRequest.builder()

        Parameters:
        listDatastoresRequest - A Consumer that will call methods on ListDatastoresRequest.Builder to create a request.
        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listPipelines

        default CompletableFuture<ListPipelinesResponse> listPipelines​(ListPipelinesRequest listPipelinesRequest)

        Retrieves a list of pipelines.

        Parameters:
        listPipelinesRequest -
        Returns:
        A Java Future containing the result of the ListPipelines operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listPipelines

        default CompletableFuture<ListPipelinesResponse> listPipelines​(Consumer<ListPipelinesRequest.Builder> listPipelinesRequest)

        Retrieves a list of pipelines.


        This is a convenience which creates an instance of the ListPipelinesRequest.Builder avoiding the need to create one manually via ListPipelinesRequest.builder()

        Parameters:
        listPipelinesRequest - A Consumer that will call methods on ListPipelinesRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the ListPipelines operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listPipelines

        default CompletableFuture<ListPipelinesResponse> listPipelines()

        Retrieves a list of pipelines.

        Returns:
        A Java Future containing the result of the ListPipelines operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listPipelinesPaginator

        default ListPipelinesPublisher listPipelinesPaginator()

        This is a variant of listPipelines(software.amazon.awssdk.services.iotanalytics.model.ListPipelinesRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListPipelinesPublisher publisher = client.listPipelinesPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListPipelinesPublisher publisher = client.listPipelinesPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListPipelinesResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListPipelinesResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listPipelines(software.amazon.awssdk.services.iotanalytics.model.ListPipelinesRequest) operation.

        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listPipelinesPaginator

        default ListPipelinesPublisher listPipelinesPaginator​(ListPipelinesRequest listPipelinesRequest)

        This is a variant of listPipelines(software.amazon.awssdk.services.iotanalytics.model.ListPipelinesRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListPipelinesPublisher publisher = client.listPipelinesPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListPipelinesPublisher publisher = client.listPipelinesPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListPipelinesResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListPipelinesResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listPipelines(software.amazon.awssdk.services.iotanalytics.model.ListPipelinesRequest) operation.

        Parameters:
        listPipelinesRequest -
        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listPipelinesPaginator

        default ListPipelinesPublisher listPipelinesPaginator​(Consumer<ListPipelinesRequest.Builder> listPipelinesRequest)

        This is a variant of listPipelines(software.amazon.awssdk.services.iotanalytics.model.ListPipelinesRequest) operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.

        When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see Publisher.subscribe(org.reactivestreams.Subscriber). Each call to the subscribe method will result in a new Subscription i.e., a new contract to stream data from the starting request.

        The following are few ways to use the response class:

        1) Using the subscribe helper method
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListPipelinesPublisher publisher = client.listPipelinesPaginator(request);
         CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response });
         future.get();
         
         
        2) Using a custom subscriber
         
         software.amazon.awssdk.services.iotanalytics.paginators.ListPipelinesPublisher publisher = client.listPipelinesPaginator(request);
         publisher.subscribe(new Subscriber<software.amazon.awssdk.services.iotanalytics.model.ListPipelinesResponse>() {
         
         public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
         
         
         public void onNext(software.amazon.awssdk.services.iotanalytics.model.ListPipelinesResponse response) { //... };
         });
         
        As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.

        Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.

        Note: If you prefer to have control on service calls, use the listPipelines(software.amazon.awssdk.services.iotanalytics.model.ListPipelinesRequest) operation.


        This is a convenience which creates an instance of the ListPipelinesRequest.Builder avoiding the need to create one manually via ListPipelinesRequest.builder()

        Parameters:
        listPipelinesRequest - A Consumer that will call methods on ListPipelinesRequest.Builder to create a request.
        Returns:
        A custom publisher that can be subscribed to request a stream of response pages.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listTagsForResource

        default CompletableFuture<ListTagsForResourceResponse> listTagsForResource​(ListTagsForResourceRequest listTagsForResourceRequest)

        Lists the tags (metadata) that you have assigned to the resource.

        Parameters:
        listTagsForResourceRequest -
        Returns:
        A Java Future containing the result of the ListTagsForResource operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • listTagsForResource

        default CompletableFuture<ListTagsForResourceResponse> listTagsForResource​(Consumer<ListTagsForResourceRequest.Builder> listTagsForResourceRequest)

        Lists the tags (metadata) that you have assigned to the resource.


        This is a convenience which creates an instance of the ListTagsForResourceRequest.Builder avoiding the need to create one manually via ListTagsForResourceRequest.builder()

        Parameters:
        listTagsForResourceRequest - A Consumer that will call methods on ListTagsForResourceRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the ListTagsForResource operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • putLoggingOptions

        default CompletableFuture<PutLoggingOptionsResponse> putLoggingOptions​(PutLoggingOptionsRequest putLoggingOptionsRequest)

        Sets or updates the IoT Analytics logging options.

        If you update the value of any loggingOptions field, it takes up to one minute for the change to take effect. Also, if you change the policy attached to the role you specified in the roleArn field (for example, to correct an invalid policy), it takes up to five minutes for that change to take effect.

        Parameters:
        putLoggingOptionsRequest -
        Returns:
        A Java Future containing the result of the PutLoggingOptions operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • putLoggingOptions

        default CompletableFuture<PutLoggingOptionsResponse> putLoggingOptions​(Consumer<PutLoggingOptionsRequest.Builder> putLoggingOptionsRequest)

        Sets or updates the IoT Analytics logging options.

        If you update the value of any loggingOptions field, it takes up to one minute for the change to take effect. Also, if you change the policy attached to the role you specified in the roleArn field (for example, to correct an invalid policy), it takes up to five minutes for that change to take effect.


        This is a convenience which creates an instance of the PutLoggingOptionsRequest.Builder avoiding the need to create one manually via PutLoggingOptionsRequest.builder()

        Parameters:
        putLoggingOptionsRequest - A Consumer that will call methods on PutLoggingOptionsRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the PutLoggingOptions operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • runPipelineActivity

        default CompletableFuture<RunPipelineActivityResponse> runPipelineActivity​(RunPipelineActivityRequest runPipelineActivityRequest)

        Simulates the results of running a pipeline activity on a message payload.

        Parameters:
        runPipelineActivityRequest -
        Returns:
        A Java Future containing the result of the RunPipelineActivity operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • runPipelineActivity

        default CompletableFuture<RunPipelineActivityResponse> runPipelineActivity​(Consumer<RunPipelineActivityRequest.Builder> runPipelineActivityRequest)

        Simulates the results of running a pipeline activity on a message payload.


        This is a convenience which creates an instance of the RunPipelineActivityRequest.Builder avoiding the need to create one manually via RunPipelineActivityRequest.builder()

        Parameters:
        runPipelineActivityRequest - A Consumer that will call methods on RunPipelineActivityRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the RunPipelineActivity operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • sampleChannelData

        default CompletableFuture<SampleChannelDataResponse> sampleChannelData​(SampleChannelDataRequest sampleChannelDataRequest)

        Retrieves a sample of messages from the specified channel ingested during the specified timeframe. Up to 10 messages can be retrieved.

        Parameters:
        sampleChannelDataRequest -
        Returns:
        A Java Future containing the result of the SampleChannelData operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • sampleChannelData

        default CompletableFuture<SampleChannelDataResponse> sampleChannelData​(Consumer<SampleChannelDataRequest.Builder> sampleChannelDataRequest)

        Retrieves a sample of messages from the specified channel ingested during the specified timeframe. Up to 10 messages can be retrieved.


        This is a convenience which creates an instance of the SampleChannelDataRequest.Builder avoiding the need to create one manually via SampleChannelDataRequest.builder()

        Parameters:
        sampleChannelDataRequest - A Consumer that will call methods on SampleChannelDataRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the SampleChannelData operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • startPipelineReprocessing

        default CompletableFuture<StartPipelineReprocessingResponse> startPipelineReprocessing​(StartPipelineReprocessingRequest startPipelineReprocessingRequest)

        Starts the reprocessing of raw message data through the pipeline.

        Parameters:
        startPipelineReprocessingRequest -
        Returns:
        A Java Future containing the result of the StartPipelineReprocessing operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • ResourceAlreadyExistsException A resource with the same name already exists.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • startPipelineReprocessing

        default CompletableFuture<StartPipelineReprocessingResponse> startPipelineReprocessing​(Consumer<StartPipelineReprocessingRequest.Builder> startPipelineReprocessingRequest)

        Starts the reprocessing of raw message data through the pipeline.


        This is a convenience which creates an instance of the StartPipelineReprocessingRequest.Builder avoiding the need to create one manually via StartPipelineReprocessingRequest.builder()

        Parameters:
        startPipelineReprocessingRequest - A Consumer that will call methods on StartPipelineReprocessingRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the StartPipelineReprocessing operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • ResourceAlreadyExistsException A resource with the same name already exists.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • tagResource

        default CompletableFuture<TagResourceResponse> tagResource​(TagResourceRequest tagResourceRequest)

        Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.

        Parameters:
        tagResourceRequest -
        Returns:
        A Java Future containing the result of the TagResource operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • tagResource

        default CompletableFuture<TagResourceResponse> tagResource​(Consumer<TagResourceRequest.Builder> tagResourceRequest)

        Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.


        This is a convenience which creates an instance of the TagResourceRequest.Builder avoiding the need to create one manually via TagResourceRequest.builder()

        Parameters:
        tagResourceRequest - A Consumer that will call methods on TagResourceRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the TagResource operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • untagResource

        default CompletableFuture<UntagResourceResponse> untagResource​(UntagResourceRequest untagResourceRequest)

        Removes the given tags (metadata) from the resource.

        Parameters:
        untagResourceRequest -
        Returns:
        A Java Future containing the result of the UntagResource operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • untagResource

        default CompletableFuture<UntagResourceResponse> untagResource​(Consumer<UntagResourceRequest.Builder> untagResourceRequest)

        Removes the given tags (metadata) from the resource.


        This is a convenience which creates an instance of the UntagResourceRequest.Builder avoiding the need to create one manually via UntagResourceRequest.builder()

        Parameters:
        untagResourceRequest - A Consumer that will call methods on UntagResourceRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the UntagResource operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • updateChannel

        default CompletableFuture<UpdateChannelResponse> updateChannel​(UpdateChannelRequest updateChannelRequest)

        Used to update the settings of a channel.

        Parameters:
        updateChannelRequest -
        Returns:
        A Java Future containing the result of the UpdateChannel operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • updateChannel

        default CompletableFuture<UpdateChannelResponse> updateChannel​(Consumer<UpdateChannelRequest.Builder> updateChannelRequest)

        Used to update the settings of a channel.


        This is a convenience which creates an instance of the UpdateChannelRequest.Builder avoiding the need to create one manually via UpdateChannelRequest.builder()

        Parameters:
        updateChannelRequest - A Consumer that will call methods on UpdateChannelRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the UpdateChannel operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • updateDataset

        default CompletableFuture<UpdateDatasetResponse> updateDataset​(UpdateDatasetRequest updateDatasetRequest)

        Updates the settings of a dataset.

        Parameters:
        updateDatasetRequest -
        Returns:
        A Java Future containing the result of the UpdateDataset operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • updateDataset

        default CompletableFuture<UpdateDatasetResponse> updateDataset​(Consumer<UpdateDatasetRequest.Builder> updateDatasetRequest)

        Updates the settings of a dataset.


        This is a convenience which creates an instance of the UpdateDatasetRequest.Builder avoiding the need to create one manually via UpdateDatasetRequest.builder()

        Parameters:
        updateDatasetRequest - A Consumer that will call methods on UpdateDatasetRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the UpdateDataset operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • updateDatastore

        default CompletableFuture<UpdateDatastoreResponse> updateDatastore​(UpdateDatastoreRequest updateDatastoreRequest)

        Used to update the settings of a data store.

        Parameters:
        updateDatastoreRequest -
        Returns:
        A Java Future containing the result of the UpdateDatastore operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • updateDatastore

        default CompletableFuture<UpdateDatastoreResponse> updateDatastore​(Consumer<UpdateDatastoreRequest.Builder> updateDatastoreRequest)

        Used to update the settings of a data store.


        This is a convenience which creates an instance of the UpdateDatastoreRequest.Builder avoiding the need to create one manually via UpdateDatastoreRequest.builder()

        Parameters:
        updateDatastoreRequest - A Consumer that will call methods on UpdateDatastoreRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the UpdateDatastore operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • updatePipeline

        default CompletableFuture<UpdatePipelineResponse> updatePipeline​(UpdatePipelineRequest updatePipelineRequest)

        Updates the settings of a pipeline. You must specify both a channel and a datastore activity and, optionally, as many as 23 additional activities in the pipelineActivities array.

        Parameters:
        updatePipelineRequest -
        Returns:
        A Java Future containing the result of the UpdatePipeline operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation
      • updatePipeline

        default CompletableFuture<UpdatePipelineResponse> updatePipeline​(Consumer<UpdatePipelineRequest.Builder> updatePipelineRequest)

        Updates the settings of a pipeline. You must specify both a channel and a datastore activity and, optionally, as many as 23 additional activities in the pipelineActivities array.


        This is a convenience which creates an instance of the UpdatePipelineRequest.Builder avoiding the need to create one manually via UpdatePipelineRequest.builder()

        Parameters:
        updatePipelineRequest - A Consumer that will call methods on UpdatePipelineRequest.Builder to create a request.
        Returns:
        A Java Future containing the result of the UpdatePipeline operation returned by the service.
        The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invoke Throwable.getCause() to retrieve the underlying exception.
        • InvalidRequestException The request was not valid.
        • ResourceNotFoundException A resource with the specified name could not be found.
        • InternalFailureException There was an internal failure.
        • ServiceUnavailableException The service is temporarily unavailable.
        • ThrottlingException The request was denied due to request throttling.
        • LimitExceededException The command caused an internal limit to be exceeded.
        • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
        • SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
        • IoTAnalyticsException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
        See Also:
        AWS API Documentation