/*
* Copyright 2018-2023 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 com.amazonaws.services.budgets;
import org.w3c.dom.*;
import java.net.*;
import java.util.*;
import javax.annotation.Generated;
import org.apache.commons.logging.*;
import com.amazonaws.*;
import com.amazonaws.annotation.SdkInternalApi;
import com.amazonaws.auth.*;
import com.amazonaws.handlers.*;
import com.amazonaws.http.*;
import com.amazonaws.internal.*;
import com.amazonaws.internal.auth.*;
import com.amazonaws.metrics.*;
import com.amazonaws.regions.*;
import com.amazonaws.transform.*;
import com.amazonaws.util.*;
import com.amazonaws.protocol.json.*;
import com.amazonaws.util.AWSRequestMetrics.Field;
import com.amazonaws.annotation.ThreadSafe;
import com.amazonaws.client.AwsSyncClientParams;
import com.amazonaws.client.builder.AdvancedConfig;
import com.amazonaws.services.budgets.AWSBudgetsClientBuilder;
import com.amazonaws.AmazonServiceException;
import com.amazonaws.services.budgets.model.*;
import com.amazonaws.services.budgets.model.transform.*;
/**
* Client for accessing AWSBudgets. All service calls made using this client are blocking, and will not return until the
* service call completes.
*
*
* Use the Amazon Web Services Budgets API to plan your service usage, service costs, and instance reservations. This
* API reference provides descriptions, syntax, and usage examples for each of the actions and data types for the Amazon
* Web Services Budgets feature.
*
*
* Budgets provide you with a way to see the following information:
*
*
* -
*
* How close your plan is to your budgeted amount or to the free tier limits
*
*
* -
*
* Your usage-to-date, including how much you've used of your Reserved Instances (RIs)
*
*
* -
*
* Your current estimated charges from Amazon Web Services, and how much your predicted usage will accrue in charges by
* the end of the month
*
*
* -
*
* How much of your budget has been used
*
*
*
*
* Amazon Web Services updates your budget status several times a day. Budgets track your unblended costs,
* subscriptions, refunds, and RIs. You can create the following types of budgets:
*
*
* -
*
* Cost budgets - Plan how much you want to spend on a service.
*
*
* -
*
* Usage budgets - Plan how much you want to use one or more services.
*
*
* -
*
* RI utilization budgets - Define a utilization threshold, and receive alerts when your RI usage falls below
* that threshold. This lets you see if your RIs are unused or under-utilized.
*
*
* -
*
* RI coverage budgets - Define a coverage threshold, and receive alerts when the number of your instance hours
* that are covered by RIs fall below that threshold. This lets you see how much of your instance usage is covered by a
* reservation.
*
*
*
*
* Service Endpoint
*
*
* The Amazon Web Services Budgets API provides the following endpoint:
*
*
*
* For information about costs that are associated with the Amazon Web Services Budgets API, see Amazon Web Services Cost Management Pricing.
*
*/
@ThreadSafe
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AWSBudgetsClient extends AmazonWebServiceClient implements AWSBudgets {
/** Provider for AWS credentials. */
private final AWSCredentialsProvider awsCredentialsProvider;
private static final Log log = LogFactory.getLog(AWSBudgets.class);
/** Default signing name for the service. */
private static final String DEFAULT_SIGNING_NAME = "budgets";
/** Client configuration factory providing ClientConfigurations tailored to this client */
protected static final ClientConfigurationFactory configFactory = new ClientConfigurationFactory();
private final AdvancedConfig advancedConfig;
private static final com.amazonaws.protocol.json.SdkJsonProtocolFactory protocolFactory = new com.amazonaws.protocol.json.SdkJsonProtocolFactory(
new JsonClientMetadata()
.withProtocolVersion("1.1")
.withSupportsCbor(false)
.withSupportsIon(false)
.addErrorMetadata(
new JsonErrorShapeMetadata().withErrorCode("AccessDeniedException").withExceptionUnmarshaller(
com.amazonaws.services.budgets.model.transform.AccessDeniedExceptionUnmarshaller.getInstance()))
.addErrorMetadata(
new JsonErrorShapeMetadata().withErrorCode("InvalidParameterException").withExceptionUnmarshaller(
com.amazonaws.services.budgets.model.transform.InvalidParameterExceptionUnmarshaller.getInstance()))
.addErrorMetadata(
new JsonErrorShapeMetadata().withErrorCode("ThrottlingException").withExceptionUnmarshaller(
com.amazonaws.services.budgets.model.transform.ThrottlingExceptionUnmarshaller.getInstance()))
.addErrorMetadata(
new JsonErrorShapeMetadata().withErrorCode("NotFoundException").withExceptionUnmarshaller(
com.amazonaws.services.budgets.model.transform.NotFoundExceptionUnmarshaller.getInstance()))
.addErrorMetadata(
new JsonErrorShapeMetadata().withErrorCode("ResourceLockedException").withExceptionUnmarshaller(
com.amazonaws.services.budgets.model.transform.ResourceLockedExceptionUnmarshaller.getInstance()))
.addErrorMetadata(
new JsonErrorShapeMetadata().withErrorCode("DuplicateRecordException").withExceptionUnmarshaller(
com.amazonaws.services.budgets.model.transform.DuplicateRecordExceptionUnmarshaller.getInstance()))
.addErrorMetadata(
new JsonErrorShapeMetadata().withErrorCode("InternalErrorException").withExceptionUnmarshaller(
com.amazonaws.services.budgets.model.transform.InternalErrorExceptionUnmarshaller.getInstance()))
.addErrorMetadata(
new JsonErrorShapeMetadata().withErrorCode("CreationLimitExceededException").withExceptionUnmarshaller(
com.amazonaws.services.budgets.model.transform.CreationLimitExceededExceptionUnmarshaller.getInstance()))
.addErrorMetadata(
new JsonErrorShapeMetadata().withErrorCode("InvalidNextTokenException").withExceptionUnmarshaller(
com.amazonaws.services.budgets.model.transform.InvalidNextTokenExceptionUnmarshaller.getInstance()))
.addErrorMetadata(
new JsonErrorShapeMetadata().withErrorCode("ExpiredNextTokenException").withExceptionUnmarshaller(
com.amazonaws.services.budgets.model.transform.ExpiredNextTokenExceptionUnmarshaller.getInstance()))
.withBaseServiceExceptionClass(com.amazonaws.services.budgets.model.AWSBudgetsException.class));
/**
* Constructs a new client to invoke service methods on AWSBudgets. A credentials provider chain will be used that
* searches for credentials in this order:
*
* - Environment Variables - AWS_ACCESS_KEY_ID and AWS_SECRET_KEY
* - Java System Properties - aws.accessKeyId and aws.secretKey
* - Instance profile credentials delivered through the Amazon EC2 metadata service
*
*
*
* All service calls made using this new client object are blocking, and will not return until the service call
* completes.
*
* @see DefaultAWSCredentialsProviderChain
* @deprecated use {@link AWSBudgetsClientBuilder#defaultClient()}
*/
@Deprecated
public AWSBudgetsClient() {
this(DefaultAWSCredentialsProviderChain.getInstance(), configFactory.getConfig());
}
/**
* Constructs a new client to invoke service methods on AWSBudgets. A credentials provider chain will be used that
* searches for credentials in this order:
*
* - Environment Variables - AWS_ACCESS_KEY_ID and AWS_SECRET_KEY
* - Java System Properties - aws.accessKeyId and aws.secretKey
* - Instance profile credentials delivered through the Amazon EC2 metadata service
*
*
*
* All service calls made using this new client object are blocking, and will not return until the service call
* completes.
*
* @param clientConfiguration
* The client configuration options controlling how this client connects to AWSBudgets (ex: proxy settings,
* retry counts, etc.).
*
* @see DefaultAWSCredentialsProviderChain
* @deprecated use {@link AWSBudgetsClientBuilder#withClientConfiguration(ClientConfiguration)}
*/
@Deprecated
public AWSBudgetsClient(ClientConfiguration clientConfiguration) {
this(DefaultAWSCredentialsProviderChain.getInstance(), clientConfiguration);
}
/**
* Constructs a new client to invoke service methods on AWSBudgets using the specified AWS account credentials.
*
*
* All service calls made using this new client object are blocking, and will not return until the service call
* completes.
*
* @param awsCredentials
* The AWS credentials (access key ID and secret key) to use when authenticating with AWS services.
* @deprecated use {@link AWSBudgetsClientBuilder#withCredentials(AWSCredentialsProvider)} for example:
* {@code AWSBudgetsClientBuilder.standard().withCredentials(new AWSStaticCredentialsProvider(awsCredentials)).build();}
*/
@Deprecated
public AWSBudgetsClient(AWSCredentials awsCredentials) {
this(awsCredentials, configFactory.getConfig());
}
/**
* Constructs a new client to invoke service methods on AWSBudgets using the specified AWS account credentials and
* client configuration options.
*
*
* All service calls made using this new client object are blocking, and will not return until the service call
* completes.
*
* @param awsCredentials
* The AWS credentials (access key ID and secret key) to use when authenticating with AWS services.
* @param clientConfiguration
* The client configuration options controlling how this client connects to AWSBudgets (ex: proxy settings,
* retry counts, etc.).
* @deprecated use {@link AWSBudgetsClientBuilder#withCredentials(AWSCredentialsProvider)} and
* {@link AWSBudgetsClientBuilder#withClientConfiguration(ClientConfiguration)}
*/
@Deprecated
public AWSBudgetsClient(AWSCredentials awsCredentials, ClientConfiguration clientConfiguration) {
super(clientConfiguration);
this.awsCredentialsProvider = new StaticCredentialsProvider(awsCredentials);
this.advancedConfig = AdvancedConfig.EMPTY;
init();
}
/**
* Constructs a new client to invoke service methods on AWSBudgets using the specified AWS account credentials
* provider.
*
*
* All service calls made using this new client object are blocking, and will not return until the service call
* completes.
*
* @param awsCredentialsProvider
* The AWS credentials provider which will provide credentials to authenticate requests with AWS services.
* @deprecated use {@link AWSBudgetsClientBuilder#withCredentials(AWSCredentialsProvider)}
*/
@Deprecated
public AWSBudgetsClient(AWSCredentialsProvider awsCredentialsProvider) {
this(awsCredentialsProvider, configFactory.getConfig());
}
/**
* Constructs a new client to invoke service methods on AWSBudgets using the specified AWS account credentials
* provider and client configuration options.
*
*
* All service calls made using this new client object are blocking, and will not return until the service call
* completes.
*
* @param awsCredentialsProvider
* The AWS credentials provider which will provide credentials to authenticate requests with AWS services.
* @param clientConfiguration
* The client configuration options controlling how this client connects to AWSBudgets (ex: proxy settings,
* retry counts, etc.).
* @deprecated use {@link AWSBudgetsClientBuilder#withCredentials(AWSCredentialsProvider)} and
* {@link AWSBudgetsClientBuilder#withClientConfiguration(ClientConfiguration)}
*/
@Deprecated
public AWSBudgetsClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration) {
this(awsCredentialsProvider, clientConfiguration, null);
}
/**
* Constructs a new client to invoke service methods on AWSBudgets using the specified AWS account credentials
* provider, client configuration options, and request metric collector.
*
*
* All service calls made using this new client object are blocking, and will not return until the service call
* completes.
*
* @param awsCredentialsProvider
* The AWS credentials provider which will provide credentials to authenticate requests with AWS services.
* @param clientConfiguration
* The client configuration options controlling how this client connects to AWSBudgets (ex: proxy settings,
* retry counts, etc.).
* @param requestMetricCollector
* optional request metric collector
* @deprecated use {@link AWSBudgetsClientBuilder#withCredentials(AWSCredentialsProvider)} and
* {@link AWSBudgetsClientBuilder#withClientConfiguration(ClientConfiguration)} and
* {@link AWSBudgetsClientBuilder#withMetricsCollector(RequestMetricCollector)}
*/
@Deprecated
public AWSBudgetsClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector) {
super(clientConfiguration, requestMetricCollector);
this.awsCredentialsProvider = awsCredentialsProvider;
this.advancedConfig = AdvancedConfig.EMPTY;
init();
}
public static AWSBudgetsClientBuilder builder() {
return AWSBudgetsClientBuilder.standard();
}
/**
* Constructs a new client to invoke service methods on AWSBudgets using the specified parameters.
*
*
* All service calls made using this new client object are blocking, and will not return until the service call
* completes.
*
* @param clientParams
* Object providing client parameters.
*/
AWSBudgetsClient(AwsSyncClientParams clientParams) {
this(clientParams, false);
}
/**
* Constructs a new client to invoke service methods on AWSBudgets using the specified parameters.
*
*
* All service calls made using this new client object are blocking, and will not return until the service call
* completes.
*
* @param clientParams
* Object providing client parameters.
*/
AWSBudgetsClient(AwsSyncClientParams clientParams, boolean endpointDiscoveryEnabled) {
super(clientParams);
this.awsCredentialsProvider = clientParams.getCredentialsProvider();
this.advancedConfig = clientParams.getAdvancedConfig();
init();
}
private void init() {
setServiceNameIntern(DEFAULT_SIGNING_NAME);
setEndpointPrefix(ENDPOINT_PREFIX);
// calling this.setEndPoint(...) will also modify the signer accordingly
setEndpoint("budgets.amazonaws.com");
HandlerChainFactory chainFactory = new HandlerChainFactory();
requestHandler2s.addAll(chainFactory.newRequestHandlerChain("/com/amazonaws/services/budgets/request.handlers"));
requestHandler2s.addAll(chainFactory.newRequestHandler2Chain("/com/amazonaws/services/budgets/request.handler2s"));
requestHandler2s.addAll(chainFactory.getGlobalHandlers());
}
/**
*
* Creates a budget and, if included, notifications and subscribers.
*
*
*
* Only one of BudgetLimit
or PlannedBudgetLimits
can be present in the syntax at one
* time. Use the syntax that matches your case. The Request Syntax section shows the BudgetLimit
* syntax. For PlannedBudgetLimits
, see the Examples section.
*
*
*
* @param createBudgetRequest
* Request of CreateBudget
* @return Result of the CreateBudget operation returned by the service.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws CreationLimitExceededException
* You've exceeded the notification or subscriber limit.
* @throws DuplicateRecordException
* The budget name already exists. Budget names must be unique within an account.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.CreateBudget
*/
@Override
public CreateBudgetResult createBudget(CreateBudgetRequest request) {
request = beforeClientExecution(request);
return executeCreateBudget(request);
}
@SdkInternalApi
final CreateBudgetResult executeCreateBudget(CreateBudgetRequest createBudgetRequest) {
ExecutionContext executionContext = createExecutionContext(createBudgetRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new CreateBudgetRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(createBudgetRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "CreateBudget");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new CreateBudgetResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Creates a budget action.
*
*
* @param createBudgetActionRequest
* @return Result of the CreateBudgetAction operation returned by the service.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws CreationLimitExceededException
* You've exceeded the notification or subscriber limit.
* @throws DuplicateRecordException
* The budget name already exists. Budget names must be unique within an account.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.CreateBudgetAction
*/
@Override
public CreateBudgetActionResult createBudgetAction(CreateBudgetActionRequest request) {
request = beforeClientExecution(request);
return executeCreateBudgetAction(request);
}
@SdkInternalApi
final CreateBudgetActionResult executeCreateBudgetAction(CreateBudgetActionRequest createBudgetActionRequest) {
ExecutionContext executionContext = createExecutionContext(createBudgetActionRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new CreateBudgetActionRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(createBudgetActionRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "CreateBudgetAction");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new CreateBudgetActionResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Creates a notification. You must create the budget before you create the associated notification.
*
*
* @param createNotificationRequest
* Request of CreateNotification
* @return Result of the CreateNotification operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws CreationLimitExceededException
* You've exceeded the notification or subscriber limit.
* @throws DuplicateRecordException
* The budget name already exists. Budget names must be unique within an account.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.CreateNotification
*/
@Override
public CreateNotificationResult createNotification(CreateNotificationRequest request) {
request = beforeClientExecution(request);
return executeCreateNotification(request);
}
@SdkInternalApi
final CreateNotificationResult executeCreateNotification(CreateNotificationRequest createNotificationRequest) {
ExecutionContext executionContext = createExecutionContext(createNotificationRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new CreateNotificationRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(createNotificationRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "CreateNotification");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new CreateNotificationResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Creates a subscriber. You must create the associated budget and notification before you create the subscriber.
*
*
* @param createSubscriberRequest
* Request of CreateSubscriber
* @return Result of the CreateSubscriber operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws CreationLimitExceededException
* You've exceeded the notification or subscriber limit.
* @throws DuplicateRecordException
* The budget name already exists. Budget names must be unique within an account.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.CreateSubscriber
*/
@Override
public CreateSubscriberResult createSubscriber(CreateSubscriberRequest request) {
request = beforeClientExecution(request);
return executeCreateSubscriber(request);
}
@SdkInternalApi
final CreateSubscriberResult executeCreateSubscriber(CreateSubscriberRequest createSubscriberRequest) {
ExecutionContext executionContext = createExecutionContext(createSubscriberRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new CreateSubscriberRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(createSubscriberRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "CreateSubscriber");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new CreateSubscriberResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Deletes a budget. You can delete your budget at any time.
*
*
*
* Deleting a budget also deletes the notifications and subscribers that are associated with that budget.
*
*
*
* @param deleteBudgetRequest
* Request of DeleteBudget
* @return Result of the DeleteBudget operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DeleteBudget
*/
@Override
public DeleteBudgetResult deleteBudget(DeleteBudgetRequest request) {
request = beforeClientExecution(request);
return executeDeleteBudget(request);
}
@SdkInternalApi
final DeleteBudgetResult executeDeleteBudget(DeleteBudgetRequest deleteBudgetRequest) {
ExecutionContext executionContext = createExecutionContext(deleteBudgetRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DeleteBudgetRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(deleteBudgetRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DeleteBudget");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DeleteBudgetResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Deletes a budget action.
*
*
* @param deleteBudgetActionRequest
* @return Result of the DeleteBudgetAction operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ResourceLockedException
* The request was received and recognized by the server, but the server rejected that particular method for
* the requested resource.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DeleteBudgetAction
*/
@Override
public DeleteBudgetActionResult deleteBudgetAction(DeleteBudgetActionRequest request) {
request = beforeClientExecution(request);
return executeDeleteBudgetAction(request);
}
@SdkInternalApi
final DeleteBudgetActionResult executeDeleteBudgetAction(DeleteBudgetActionRequest deleteBudgetActionRequest) {
ExecutionContext executionContext = createExecutionContext(deleteBudgetActionRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DeleteBudgetActionRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(deleteBudgetActionRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DeleteBudgetAction");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DeleteBudgetActionResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Deletes a notification.
*
*
*
* Deleting a notification also deletes the subscribers that are associated with the notification.
*
*
*
* @param deleteNotificationRequest
* Request of DeleteNotification
* @return Result of the DeleteNotification operation returned by the service.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DeleteNotification
*/
@Override
public DeleteNotificationResult deleteNotification(DeleteNotificationRequest request) {
request = beforeClientExecution(request);
return executeDeleteNotification(request);
}
@SdkInternalApi
final DeleteNotificationResult executeDeleteNotification(DeleteNotificationRequest deleteNotificationRequest) {
ExecutionContext executionContext = createExecutionContext(deleteNotificationRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DeleteNotificationRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(deleteNotificationRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DeleteNotification");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DeleteNotificationResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Deletes a subscriber.
*
*
*
* Deleting the last subscriber to a notification also deletes the notification.
*
*
*
* @param deleteSubscriberRequest
* Request of DeleteSubscriber
* @return Result of the DeleteSubscriber operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DeleteSubscriber
*/
@Override
public DeleteSubscriberResult deleteSubscriber(DeleteSubscriberRequest request) {
request = beforeClientExecution(request);
return executeDeleteSubscriber(request);
}
@SdkInternalApi
final DeleteSubscriberResult executeDeleteSubscriber(DeleteSubscriberRequest deleteSubscriberRequest) {
ExecutionContext executionContext = createExecutionContext(deleteSubscriberRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DeleteSubscriberRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(deleteSubscriberRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DeleteSubscriber");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DeleteSubscriberResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Describes a budget.
*
*
*
* The Request Syntax section shows the BudgetLimit
syntax. For PlannedBudgetLimits
, see
* the Examples section.
*
*
*
* @param describeBudgetRequest
* Request of DescribeBudget
* @return Result of the DescribeBudget operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DescribeBudget
*/
@Override
public DescribeBudgetResult describeBudget(DescribeBudgetRequest request) {
request = beforeClientExecution(request);
return executeDescribeBudget(request);
}
@SdkInternalApi
final DescribeBudgetResult executeDescribeBudget(DescribeBudgetRequest describeBudgetRequest) {
ExecutionContext executionContext = createExecutionContext(describeBudgetRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DescribeBudgetRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(describeBudgetRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DescribeBudget");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DescribeBudgetResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Describes a budget action detail.
*
*
* @param describeBudgetActionRequest
* @return Result of the DescribeBudgetAction operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DescribeBudgetAction
*/
@Override
public DescribeBudgetActionResult describeBudgetAction(DescribeBudgetActionRequest request) {
request = beforeClientExecution(request);
return executeDescribeBudgetAction(request);
}
@SdkInternalApi
final DescribeBudgetActionResult executeDescribeBudgetAction(DescribeBudgetActionRequest describeBudgetActionRequest) {
ExecutionContext executionContext = createExecutionContext(describeBudgetActionRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DescribeBudgetActionRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(describeBudgetActionRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DescribeBudgetAction");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DescribeBudgetActionResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Describes a budget action history detail.
*
*
* @param describeBudgetActionHistoriesRequest
* @return Result of the DescribeBudgetActionHistories operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws InvalidNextTokenException
* The pagination token is invalid.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DescribeBudgetActionHistories
*/
@Override
public DescribeBudgetActionHistoriesResult describeBudgetActionHistories(DescribeBudgetActionHistoriesRequest request) {
request = beforeClientExecution(request);
return executeDescribeBudgetActionHistories(request);
}
@SdkInternalApi
final DescribeBudgetActionHistoriesResult executeDescribeBudgetActionHistories(DescribeBudgetActionHistoriesRequest describeBudgetActionHistoriesRequest) {
ExecutionContext executionContext = createExecutionContext(describeBudgetActionHistoriesRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DescribeBudgetActionHistoriesRequestProtocolMarshaller(protocolFactory).marshall(super
.beforeMarshalling(describeBudgetActionHistoriesRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DescribeBudgetActionHistories");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false),
new DescribeBudgetActionHistoriesResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Describes all of the budget actions for an account.
*
*
* @param describeBudgetActionsForAccountRequest
* @return Result of the DescribeBudgetActionsForAccount operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws InvalidNextTokenException
* The pagination token is invalid.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DescribeBudgetActionsForAccount
*/
@Override
public DescribeBudgetActionsForAccountResult describeBudgetActionsForAccount(DescribeBudgetActionsForAccountRequest request) {
request = beforeClientExecution(request);
return executeDescribeBudgetActionsForAccount(request);
}
@SdkInternalApi
final DescribeBudgetActionsForAccountResult executeDescribeBudgetActionsForAccount(
DescribeBudgetActionsForAccountRequest describeBudgetActionsForAccountRequest) {
ExecutionContext executionContext = createExecutionContext(describeBudgetActionsForAccountRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DescribeBudgetActionsForAccountRequestProtocolMarshaller(protocolFactory).marshall(super
.beforeMarshalling(describeBudgetActionsForAccountRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DescribeBudgetActionsForAccount");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false),
new DescribeBudgetActionsForAccountResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Describes all of the budget actions for a budget.
*
*
* @param describeBudgetActionsForBudgetRequest
* @return Result of the DescribeBudgetActionsForBudget operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws InvalidNextTokenException
* The pagination token is invalid.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DescribeBudgetActionsForBudget
*/
@Override
public DescribeBudgetActionsForBudgetResult describeBudgetActionsForBudget(DescribeBudgetActionsForBudgetRequest request) {
request = beforeClientExecution(request);
return executeDescribeBudgetActionsForBudget(request);
}
@SdkInternalApi
final DescribeBudgetActionsForBudgetResult executeDescribeBudgetActionsForBudget(DescribeBudgetActionsForBudgetRequest describeBudgetActionsForBudgetRequest) {
ExecutionContext executionContext = createExecutionContext(describeBudgetActionsForBudgetRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DescribeBudgetActionsForBudgetRequestProtocolMarshaller(protocolFactory).marshall(super
.beforeMarshalling(describeBudgetActionsForBudgetRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DescribeBudgetActionsForBudget");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false),
new DescribeBudgetActionsForBudgetResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Lists the budget names and notifications that are associated with an account.
*
*
* @param describeBudgetNotificationsForAccountRequest
* @return Result of the DescribeBudgetNotificationsForAccount operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws InvalidNextTokenException
* The pagination token is invalid.
* @throws ExpiredNextTokenException
* The pagination token expired.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DescribeBudgetNotificationsForAccount
*/
@Override
public DescribeBudgetNotificationsForAccountResult describeBudgetNotificationsForAccount(DescribeBudgetNotificationsForAccountRequest request) {
request = beforeClientExecution(request);
return executeDescribeBudgetNotificationsForAccount(request);
}
@SdkInternalApi
final DescribeBudgetNotificationsForAccountResult executeDescribeBudgetNotificationsForAccount(
DescribeBudgetNotificationsForAccountRequest describeBudgetNotificationsForAccountRequest) {
ExecutionContext executionContext = createExecutionContext(describeBudgetNotificationsForAccountRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DescribeBudgetNotificationsForAccountRequestProtocolMarshaller(protocolFactory).marshall(super
.beforeMarshalling(describeBudgetNotificationsForAccountRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DescribeBudgetNotificationsForAccount");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false),
new DescribeBudgetNotificationsForAccountResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Describes the history for DAILY
, MONTHLY
, and QUARTERLY
budgets. Budget
* history isn't available for ANNUAL
budgets.
*
*
* @param describeBudgetPerformanceHistoryRequest
* @return Result of the DescribeBudgetPerformanceHistory operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws InvalidNextTokenException
* The pagination token is invalid.
* @throws ExpiredNextTokenException
* The pagination token expired.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DescribeBudgetPerformanceHistory
*/
@Override
public DescribeBudgetPerformanceHistoryResult describeBudgetPerformanceHistory(DescribeBudgetPerformanceHistoryRequest request) {
request = beforeClientExecution(request);
return executeDescribeBudgetPerformanceHistory(request);
}
@SdkInternalApi
final DescribeBudgetPerformanceHistoryResult executeDescribeBudgetPerformanceHistory(
DescribeBudgetPerformanceHistoryRequest describeBudgetPerformanceHistoryRequest) {
ExecutionContext executionContext = createExecutionContext(describeBudgetPerformanceHistoryRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DescribeBudgetPerformanceHistoryRequestProtocolMarshaller(protocolFactory).marshall(super
.beforeMarshalling(describeBudgetPerformanceHistoryRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DescribeBudgetPerformanceHistory");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false),
new DescribeBudgetPerformanceHistoryResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Lists the budgets that are associated with an account.
*
*
*
* The Request Syntax section shows the BudgetLimit
syntax. For PlannedBudgetLimits
, see
* the Examples section.
*
*
*
* @param describeBudgetsRequest
* Request of DescribeBudgets
* @return Result of the DescribeBudgets operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws InvalidNextTokenException
* The pagination token is invalid.
* @throws ExpiredNextTokenException
* The pagination token expired.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DescribeBudgets
*/
@Override
public DescribeBudgetsResult describeBudgets(DescribeBudgetsRequest request) {
request = beforeClientExecution(request);
return executeDescribeBudgets(request);
}
@SdkInternalApi
final DescribeBudgetsResult executeDescribeBudgets(DescribeBudgetsRequest describeBudgetsRequest) {
ExecutionContext executionContext = createExecutionContext(describeBudgetsRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DescribeBudgetsRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(describeBudgetsRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DescribeBudgets");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DescribeBudgetsResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Lists the notifications that are associated with a budget.
*
*
* @param describeNotificationsForBudgetRequest
* Request of DescribeNotificationsForBudget
* @return Result of the DescribeNotificationsForBudget operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws InvalidNextTokenException
* The pagination token is invalid.
* @throws ExpiredNextTokenException
* The pagination token expired.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DescribeNotificationsForBudget
*/
@Override
public DescribeNotificationsForBudgetResult describeNotificationsForBudget(DescribeNotificationsForBudgetRequest request) {
request = beforeClientExecution(request);
return executeDescribeNotificationsForBudget(request);
}
@SdkInternalApi
final DescribeNotificationsForBudgetResult executeDescribeNotificationsForBudget(DescribeNotificationsForBudgetRequest describeNotificationsForBudgetRequest) {
ExecutionContext executionContext = createExecutionContext(describeNotificationsForBudgetRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DescribeNotificationsForBudgetRequestProtocolMarshaller(protocolFactory).marshall(super
.beforeMarshalling(describeNotificationsForBudgetRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DescribeNotificationsForBudget");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false),
new DescribeNotificationsForBudgetResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Lists the subscribers that are associated with a notification.
*
*
* @param describeSubscribersForNotificationRequest
* Request of DescribeSubscribersForNotification
* @return Result of the DescribeSubscribersForNotification operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws InvalidNextTokenException
* The pagination token is invalid.
* @throws ExpiredNextTokenException
* The pagination token expired.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.DescribeSubscribersForNotification
*/
@Override
public DescribeSubscribersForNotificationResult describeSubscribersForNotification(DescribeSubscribersForNotificationRequest request) {
request = beforeClientExecution(request);
return executeDescribeSubscribersForNotification(request);
}
@SdkInternalApi
final DescribeSubscribersForNotificationResult executeDescribeSubscribersForNotification(
DescribeSubscribersForNotificationRequest describeSubscribersForNotificationRequest) {
ExecutionContext executionContext = createExecutionContext(describeSubscribersForNotificationRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new DescribeSubscribersForNotificationRequestProtocolMarshaller(protocolFactory).marshall(super
.beforeMarshalling(describeSubscribersForNotificationRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "DescribeSubscribersForNotification");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false),
new DescribeSubscribersForNotificationResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Executes a budget action.
*
*
* @param executeBudgetActionRequest
* @return Result of the ExecuteBudgetAction operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ResourceLockedException
* The request was received and recognized by the server, but the server rejected that particular method for
* the requested resource.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.ExecuteBudgetAction
*/
@Override
public ExecuteBudgetActionResult executeBudgetAction(ExecuteBudgetActionRequest request) {
request = beforeClientExecution(request);
return executeExecuteBudgetAction(request);
}
@SdkInternalApi
final ExecuteBudgetActionResult executeExecuteBudgetAction(ExecuteBudgetActionRequest executeBudgetActionRequest) {
ExecutionContext executionContext = createExecutionContext(executeBudgetActionRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new ExecuteBudgetActionRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(executeBudgetActionRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "ExecuteBudgetAction");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new ExecuteBudgetActionResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Updates a budget. You can change every part of a budget except for the budgetName
and the
* calculatedSpend
. When you modify a budget, the calculatedSpend
drops to zero until
* Amazon Web Services has new usage data to use for forecasting.
*
*
*
* Only one of BudgetLimit
or PlannedBudgetLimits
can be present in the syntax at one
* time. Use the syntax that matches your case. The Request Syntax section shows the BudgetLimit
* syntax. For PlannedBudgetLimits
, see the Examples section.
*
*
*
* @param updateBudgetRequest
* Request of UpdateBudget
* @return Result of the UpdateBudget operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.UpdateBudget
*/
@Override
public UpdateBudgetResult updateBudget(UpdateBudgetRequest request) {
request = beforeClientExecution(request);
return executeUpdateBudget(request);
}
@SdkInternalApi
final UpdateBudgetResult executeUpdateBudget(UpdateBudgetRequest updateBudgetRequest) {
ExecutionContext executionContext = createExecutionContext(updateBudgetRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new UpdateBudgetRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(updateBudgetRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "UpdateBudget");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new UpdateBudgetResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Updates a budget action.
*
*
* @param updateBudgetActionRequest
* @return Result of the UpdateBudgetAction operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ResourceLockedException
* The request was received and recognized by the server, but the server rejected that particular method for
* the requested resource.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.UpdateBudgetAction
*/
@Override
public UpdateBudgetActionResult updateBudgetAction(UpdateBudgetActionRequest request) {
request = beforeClientExecution(request);
return executeUpdateBudgetAction(request);
}
@SdkInternalApi
final UpdateBudgetActionResult executeUpdateBudgetAction(UpdateBudgetActionRequest updateBudgetActionRequest) {
ExecutionContext executionContext = createExecutionContext(updateBudgetActionRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new UpdateBudgetActionRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(updateBudgetActionRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "UpdateBudgetAction");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new UpdateBudgetActionResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Updates a notification.
*
*
* @param updateNotificationRequest
* Request of UpdateNotification
* @return Result of the UpdateNotification operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws DuplicateRecordException
* The budget name already exists. Budget names must be unique within an account.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.UpdateNotification
*/
@Override
public UpdateNotificationResult updateNotification(UpdateNotificationRequest request) {
request = beforeClientExecution(request);
return executeUpdateNotification(request);
}
@SdkInternalApi
final UpdateNotificationResult executeUpdateNotification(UpdateNotificationRequest updateNotificationRequest) {
ExecutionContext executionContext = createExecutionContext(updateNotificationRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new UpdateNotificationRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(updateNotificationRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "UpdateNotification");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new UpdateNotificationResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
*
* Updates a subscriber.
*
*
* @param updateSubscriberRequest
* Request of UpdateSubscriber
* @return Result of the UpdateSubscriber operation returned by the service.
* @throws InternalErrorException
* An error on the server occurred during the processing of your request. Try again later.
* @throws InvalidParameterException
* An error on the client occurred. Typically, the cause is an invalid input value.
* @throws NotFoundException
* We can’t locate the resource that you specified.
* @throws DuplicateRecordException
* The budget name already exists. Budget names must be unique within an account.
* @throws AccessDeniedException
* You are not authorized to use this operation with the given parameters.
* @throws ThrottlingException
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
* @sample AWSBudgets.UpdateSubscriber
*/
@Override
public UpdateSubscriberResult updateSubscriber(UpdateSubscriberRequest request) {
request = beforeClientExecution(request);
return executeUpdateSubscriber(request);
}
@SdkInternalApi
final UpdateSubscriberResult executeUpdateSubscriber(UpdateSubscriberRequest updateSubscriberRequest) {
ExecutionContext executionContext = createExecutionContext(updateSubscriberRequest);
AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics();
awsRequestMetrics.startEvent(Field.ClientExecuteTime);
Request request = null;
Response response = null;
try {
awsRequestMetrics.startEvent(Field.RequestMarshallTime);
try {
request = new UpdateSubscriberRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(updateSubscriberRequest));
// Binds the request metrics to the current request.
request.setAWSRequestMetrics(awsRequestMetrics);
request.addHandlerContext(HandlerContextKey.CLIENT_ENDPOINT, endpoint);
request.addHandlerContext(HandlerContextKey.ENDPOINT_OVERRIDDEN, isEndpointOverridden());
request.addHandlerContext(HandlerContextKey.SIGNING_REGION, getSigningRegion());
request.addHandlerContext(HandlerContextKey.SERVICE_ID, "Budgets");
request.addHandlerContext(HandlerContextKey.OPERATION_NAME, "UpdateSubscriber");
request.addHandlerContext(HandlerContextKey.ADVANCED_CONFIG, advancedConfig);
} finally {
awsRequestMetrics.endEvent(Field.RequestMarshallTime);
}
HttpResponseHandler> responseHandler = protocolFactory.createResponseHandler(
new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new UpdateSubscriberResultJsonUnmarshaller());
response = invoke(request, responseHandler, executionContext);
return response.getAwsResponse();
} finally {
endClientExecution(awsRequestMetrics, request, response);
}
}
/**
* Returns additional metadata for a previously executed successful, request, typically used for debugging issues
* where a service isn't acting as expected. This data isn't considered part of the result data returned by an
* operation, so it's available through this separate, diagnostic interface.
*
* Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic
* information for an executed request, you should use this method to retrieve it as soon as possible after
* executing the request.
*
* @param request
* The originally executed request
*
* @return The response metadata for the specified request, or null if none is available.
*/
public ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request) {
return client.getResponseMetadataForRequest(request);
}
/**
* Normal invoke with authentication. Credentials are required and may be overriden at the request level.
**/
private Response invoke(Request request, HttpResponseHandler> responseHandler,
ExecutionContext executionContext) {
return invoke(request, responseHandler, executionContext, null, null);
}
/**
* Normal invoke with authentication. Credentials are required and may be overriden at the request level.
**/
private Response invoke(Request request, HttpResponseHandler> responseHandler,
ExecutionContext executionContext, URI cachedEndpoint, URI uriFromEndpointTrait) {
executionContext.setCredentialsProvider(CredentialUtils.getCredentialsProvider(request.getOriginalRequest(), awsCredentialsProvider));
return doInvoke(request, responseHandler, executionContext, cachedEndpoint, uriFromEndpointTrait);
}
/**
* Invoke with no authentication. Credentials are not required and any credentials set on the client or request will
* be ignored for this operation.
**/
private Response anonymousInvoke(Request request,
HttpResponseHandler> responseHandler, ExecutionContext executionContext) {
return doInvoke(request, responseHandler, executionContext, null, null);
}
/**
* Invoke the request using the http client. Assumes credentials (or lack thereof) have been configured in the
* ExecutionContext beforehand.
**/
private Response doInvoke(Request request, HttpResponseHandler> responseHandler,
ExecutionContext executionContext, URI discoveredEndpoint, URI uriFromEndpointTrait) {
if (discoveredEndpoint != null) {
request.setEndpoint(discoveredEndpoint);
request.getOriginalRequest().getRequestClientOptions().appendUserAgent("endpoint-discovery");
} else if (uriFromEndpointTrait != null) {
request.setEndpoint(uriFromEndpointTrait);
} else {
request.setEndpoint(endpoint);
}
request.setTimeOffset(timeOffset);
HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(new JsonErrorResponseMetadata());
return client.execute(request, responseHandler, errorResponseHandler, executionContext);
}
@com.amazonaws.annotation.SdkInternalApi
static com.amazonaws.protocol.json.SdkJsonProtocolFactory getProtocolFactory() {
return protocolFactory;
}
@Override
public void shutdown() {
super.shutdown();
}
}