All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.freetier.FreeTierAsyncClient Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Free Tier module holds the client classes that are used for communicating with Free Tier.

There is a newer version: 2.29.39
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.freetier;

import java.util.concurrent.CompletableFuture;
import java.util.function.Consumer;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.annotations.ThreadSafe;
import software.amazon.awssdk.awscore.AwsClient;
import software.amazon.awssdk.services.freetier.model.GetFreeTierUsageRequest;
import software.amazon.awssdk.services.freetier.model.GetFreeTierUsageResponse;
import software.amazon.awssdk.services.freetier.paginators.GetFreeTierUsagePublisher;

/**
 * Service client for accessing AWS Free Tier asynchronously. This can be created using the static {@link #builder()}
 * method.The asynchronous client performs non-blocking I/O when configured with any {@code 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.
 *
 * 

* You can use the Amazon Web Services Free Tier API to query programmatically your Free Tier usage data. *

*

* Free Tier tracks your monthly usage data for all free tier offers that are associated with your Amazon Web Services * account. You can use the Free Tier API to filter and show only the data that you want. *

*

* Service endpoint *

*

* The Free Tier API provides the following endpoint: *

*
    *
  • *

    * https://freetier.us-east-1.api.aws *

    *
  • *
*

* For more information, see Using the Amazon Web * Services Free Tier in the Billing User Guide. *

*/ @Generated("software.amazon.awssdk:codegen") @SdkPublicApi @ThreadSafe public interface FreeTierAsyncClient extends AwsClient { String SERVICE_NAME = "freetier"; /** * Value for looking up the service's metadata from the * {@link software.amazon.awssdk.regions.ServiceMetadataProvider}. */ String SERVICE_METADATA_ID = "freetier"; /** *

* Returns a list of all Free Tier usage objects that match your filters. *

* * @param getFreeTierUsageRequest * @return A Java Future containing the result of the GetFreeTierUsage 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 * {@link Throwable#getCause} to retrieve the underlying exception. *
    *
  • InternalServerException An unexpected error occurred during the processing of your request.
  • *
  • ValidationException The input fails to satisfy the constraints specified by an Amazon Web Service.
  • *
  • 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.
  • *
  • FreeTierException Base class for all service exceptions. Unknown exceptions will be thrown as an * instance of this type.
  • *
* @sample FreeTierAsyncClient.GetFreeTierUsage * @see AWS API * Documentation */ default CompletableFuture getFreeTierUsage(GetFreeTierUsageRequest getFreeTierUsageRequest) { throw new UnsupportedOperationException(); } /** *

* Returns a list of all Free Tier usage objects that match your filters. *

*
*

* This is a convenience which creates an instance of the {@link GetFreeTierUsageRequest.Builder} avoiding the need * to create one manually via {@link GetFreeTierUsageRequest#builder()} *

* * @param getFreeTierUsageRequest * A {@link Consumer} that will call methods on * {@link software.amazon.awssdk.services.freetier.model.GetFreeTierUsageRequest.Builder} to create a * request. * @return A Java Future containing the result of the GetFreeTierUsage 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 * {@link Throwable#getCause} to retrieve the underlying exception. *
    *
  • InternalServerException An unexpected error occurred during the processing of your request.
  • *
  • ValidationException The input fails to satisfy the constraints specified by an Amazon Web Service.
  • *
  • 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.
  • *
  • FreeTierException Base class for all service exceptions. Unknown exceptions will be thrown as an * instance of this type.
  • *
* @sample FreeTierAsyncClient.GetFreeTierUsage * @see AWS API * Documentation */ default CompletableFuture getFreeTierUsage( Consumer getFreeTierUsageRequest) { return getFreeTierUsage(GetFreeTierUsageRequest.builder().applyMutation(getFreeTierUsageRequest).build()); } /** *

* This is a variant of * {@link #getFreeTierUsage(software.amazon.awssdk.services.freetier.model.GetFreeTierUsageRequest)} 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 * {@link org.reactivestreams.Publisher#subscribe(org.reactivestreams.Subscriber)}. Each call to the subscribe * method will result in a new {@link org.reactivestreams.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 * *
     * {@code
     * software.amazon.awssdk.services.freetier.paginators.GetFreeTierUsagePublisher publisher = client.getFreeTierUsagePaginator(request);
     * CompletableFuture future = publisher.subscribe(res -> { // Do something with the response });
     * future.get();
     * }
     * 
* * 2) Using a custom subscriber * *
     * {@code
     * software.amazon.awssdk.services.freetier.paginators.GetFreeTierUsagePublisher publisher = client.getFreeTierUsagePaginator(request);
     * publisher.subscribe(new Subscriber() {
     * 
     * public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
     * 
     * 
     * public void onNext(software.amazon.awssdk.services.freetier.model.GetFreeTierUsageResponse 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 * {@link #getFreeTierUsage(software.amazon.awssdk.services.freetier.model.GetFreeTierUsageRequest)} operation. *

* * @param getFreeTierUsageRequest * @return 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 * {@link Throwable#getCause} to retrieve the underlying exception. *
    *
  • InternalServerException An unexpected error occurred during the processing of your request.
  • *
  • ValidationException The input fails to satisfy the constraints specified by an Amazon Web Service.
  • *
  • 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.
  • *
  • FreeTierException Base class for all service exceptions. Unknown exceptions will be thrown as an * instance of this type.
  • *
* @sample FreeTierAsyncClient.GetFreeTierUsage * @see AWS API * Documentation */ default GetFreeTierUsagePublisher getFreeTierUsagePaginator(GetFreeTierUsageRequest getFreeTierUsageRequest) { return new GetFreeTierUsagePublisher(this, getFreeTierUsageRequest); } /** *

* This is a variant of * {@link #getFreeTierUsage(software.amazon.awssdk.services.freetier.model.GetFreeTierUsageRequest)} 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 * {@link org.reactivestreams.Publisher#subscribe(org.reactivestreams.Subscriber)}. Each call to the subscribe * method will result in a new {@link org.reactivestreams.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 * *
     * {@code
     * software.amazon.awssdk.services.freetier.paginators.GetFreeTierUsagePublisher publisher = client.getFreeTierUsagePaginator(request);
     * CompletableFuture future = publisher.subscribe(res -> { // Do something with the response });
     * future.get();
     * }
     * 
* * 2) Using a custom subscriber * *
     * {@code
     * software.amazon.awssdk.services.freetier.paginators.GetFreeTierUsagePublisher publisher = client.getFreeTierUsagePaginator(request);
     * publisher.subscribe(new Subscriber() {
     * 
     * public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
     * 
     * 
     * public void onNext(software.amazon.awssdk.services.freetier.model.GetFreeTierUsageResponse 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 * {@link #getFreeTierUsage(software.amazon.awssdk.services.freetier.model.GetFreeTierUsageRequest)} operation. *

*
*

* This is a convenience which creates an instance of the {@link GetFreeTierUsageRequest.Builder} avoiding the need * to create one manually via {@link GetFreeTierUsageRequest#builder()} *

* * @param getFreeTierUsageRequest * A {@link Consumer} that will call methods on * {@link software.amazon.awssdk.services.freetier.model.GetFreeTierUsageRequest.Builder} to create a * request. * @return 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 * {@link Throwable#getCause} to retrieve the underlying exception. *
    *
  • InternalServerException An unexpected error occurred during the processing of your request.
  • *
  • ValidationException The input fails to satisfy the constraints specified by an Amazon Web Service.
  • *
  • 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.
  • *
  • FreeTierException Base class for all service exceptions. Unknown exceptions will be thrown as an * instance of this type.
  • *
* @sample FreeTierAsyncClient.GetFreeTierUsage * @see AWS API * Documentation */ default GetFreeTierUsagePublisher getFreeTierUsagePaginator(Consumer getFreeTierUsageRequest) { return getFreeTierUsagePaginator(GetFreeTierUsageRequest.builder().applyMutation(getFreeTierUsageRequest).build()); } @Override default FreeTierServiceClientConfiguration serviceClientConfiguration() { throw new UnsupportedOperationException(); } /** * Create a {@link FreeTierAsyncClient} with the region loaded from the * {@link software.amazon.awssdk.regions.providers.DefaultAwsRegionProviderChain} and credentials loaded from the * {@link software.amazon.awssdk.auth.credentials.DefaultCredentialsProvider}. */ static FreeTierAsyncClient create() { return builder().build(); } /** * Create a builder that can be used to configure and create a {@link FreeTierAsyncClient}. */ static FreeTierAsyncClientBuilder builder() { return new DefaultFreeTierAsyncClientBuilder(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy