/* * 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.scheduler; import javax.annotation.Generated; import com.amazonaws.*; import com.amazonaws.regions.*; import com.amazonaws.services.scheduler.model.*; /** * Interface for accessing Amazon EventBridge Scheduler. *
* Note: Do not directly implement this interface, new methods are added to it regularly. Extend from * {@link com.amazonaws.services.scheduler.AbstractAmazonScheduler} instead. *
**
* Amazon EventBridge Scheduler is a serverless scheduler that allows you to create, run, and manage tasks from one * central, managed service. EventBridge Scheduler delivers your tasks reliably, with built-in mechanisms that adjust * your schedules based on the availability of downstream targets. The following reference lists the available API * actions, and data types for EventBridge Scheduler. *
*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public interface AmazonScheduler { /** * The region metadata service name for computing region endpoints. You can use this value to retrieve metadata * (such as supported regions) of the service. * * @see RegionUtils#getRegionsForService(String) */ String ENDPOINT_PREFIX = "scheduler"; /** ** Creates the specified schedule. *
* * @param createScheduleRequest * @return Result of the CreateSchedule operation returned by the service. * @throws ServiceQuotaExceededException * The request exceeds a service quota. * @throws ValidationException * The input fails to satisfy the constraints specified by an AWS service. * @throws InternalServerException * Unexpected error encountered while processing the request. * @throws ConflictException * Updating or deleting the resource can cause an inconsistent state. * @throws ResourceNotFoundException * The request references a resource which does not exist. * @throws ThrottlingException * The request was denied due to request throttling. * @sample AmazonScheduler.CreateSchedule * @see AWS API * Documentation */ CreateScheduleResult createSchedule(CreateScheduleRequest createScheduleRequest); /** ** Creates the specified schedule group. *
* * @param createScheduleGroupRequest * @return Result of the CreateScheduleGroup operation returned by the service. * @throws ServiceQuotaExceededException * The request exceeds a service quota. * @throws ValidationException * The input fails to satisfy the constraints specified by an AWS service. * @throws InternalServerException * Unexpected error encountered while processing the request. * @throws ConflictException * Updating or deleting the resource can cause an inconsistent state. * @throws ThrottlingException * The request was denied due to request throttling. * @sample AmazonScheduler.CreateScheduleGroup * @see AWS * API Documentation */ CreateScheduleGroupResult createScheduleGroup(CreateScheduleGroupRequest createScheduleGroupRequest); /** ** Deletes the specified schedule. *
* * @param deleteScheduleRequest * @return Result of the DeleteSchedule operation returned by the service. * @throws ValidationException * The input fails to satisfy the constraints specified by an AWS service. * @throws InternalServerException * Unexpected error encountered while processing the request. * @throws ConflictException * Updating or deleting the resource can cause an inconsistent state. * @throws ResourceNotFoundException * The request references a resource which does not exist. * @throws ThrottlingException * The request was denied due to request throttling. * @sample AmazonScheduler.DeleteSchedule * @see AWS API * Documentation */ DeleteScheduleResult deleteSchedule(DeleteScheduleRequest deleteScheduleRequest); /** *
* Deletes the specified schedule group. Deleting a schedule group results in EventBridge Scheduler deleting all
* schedules associated with the group. When you delete a group, it remains in a DELETING
state until
* all of its associated schedules are deleted. Schedules associated with the group that are set to run while the
* schedule group is in the process of being deleted might continue to invoke their targets until the schedule group
* and its associated schedules are deleted.
*
* This operation is eventually consistent. *
** Retrieves the specified schedule. *
* * @param getScheduleRequest * @return Result of the GetSchedule operation returned by the service. * @throws ValidationException * The input fails to satisfy the constraints specified by an AWS service. * @throws InternalServerException * Unexpected error encountered while processing the request. * @throws ResourceNotFoundException * The request references a resource which does not exist. * @throws ThrottlingException * The request was denied due to request throttling. * @sample AmazonScheduler.GetSchedule * @see AWS API * Documentation */ GetScheduleResult getSchedule(GetScheduleRequest getScheduleRequest); /** ** Retrieves the specified schedule group. *
* * @param getScheduleGroupRequest * @return Result of the GetScheduleGroup operation returned by the service. * @throws ValidationException * The input fails to satisfy the constraints specified by an AWS service. * @throws InternalServerException * Unexpected error encountered while processing the request. * @throws ResourceNotFoundException * The request references a resource which does not exist. * @throws ThrottlingException * The request was denied due to request throttling. * @sample AmazonScheduler.GetScheduleGroup * @see AWS API * Documentation */ GetScheduleGroupResult getScheduleGroup(GetScheduleGroupRequest getScheduleGroupRequest); /** ** Returns a paginated list of your schedule groups. *
* * @param listScheduleGroupsRequest * @return Result of the ListScheduleGroups operation returned by the service. * @throws ValidationException * The input fails to satisfy the constraints specified by an AWS service. * @throws InternalServerException * Unexpected error encountered while processing the request. * @throws ThrottlingException * The request was denied due to request throttling. * @sample AmazonScheduler.ListScheduleGroups * @see AWS * API Documentation */ ListScheduleGroupsResult listScheduleGroups(ListScheduleGroupsRequest listScheduleGroupsRequest); /** ** Returns a paginated list of your EventBridge Scheduler schedules. *
* * @param listSchedulesRequest * @return Result of the ListSchedules operation returned by the service. * @throws ValidationException * The input fails to satisfy the constraints specified by an AWS service. * @throws InternalServerException * Unexpected error encountered while processing the request. * @throws ResourceNotFoundException * The request references a resource which does not exist. * @throws ThrottlingException * The request was denied due to request throttling. * @sample AmazonScheduler.ListSchedules * @see AWS API * Documentation */ ListSchedulesResult listSchedules(ListSchedulesRequest listSchedulesRequest); /** ** Lists the tags associated with the Scheduler resource. *
* * @param listTagsForResourceRequest * @return Result of the ListTagsForResource operation returned by the service. * @throws ValidationException * The input fails to satisfy the constraints specified by an AWS service. * @throws InternalServerException * Unexpected error encountered while processing the request. * @throws ResourceNotFoundException * The request references a resource which does not exist. * @throws ThrottlingException * The request was denied due to request throttling. * @sample AmazonScheduler.ListTagsForResource * @see AWS * API Documentation */ ListTagsForResourceResult listTagsForResource(ListTagsForResourceRequest listTagsForResourceRequest); /** ** Assigns one or more tags (key-value pairs) to the specified EventBridge Scheduler resource. You can only assign * tags to schedule groups. *
* * @param tagResourceRequest * @return Result of the TagResource operation returned by the service. * @throws ValidationException * The input fails to satisfy the constraints specified by an AWS service. * @throws InternalServerException * Unexpected error encountered while processing the request. * @throws ConflictException * Updating or deleting the resource can cause an inconsistent state. * @throws ResourceNotFoundException * The request references a resource which does not exist. * @throws ThrottlingException * The request was denied due to request throttling. * @sample AmazonScheduler.TagResource * @see AWS API * Documentation */ TagResourceResult tagResource(TagResourceRequest tagResourceRequest); /** ** Removes one or more tags from the specified EventBridge Scheduler schedule group. *
* * @param untagResourceRequest * @return Result of the UntagResource operation returned by the service. * @throws ValidationException * The input fails to satisfy the constraints specified by an AWS service. * @throws InternalServerException * Unexpected error encountered while processing the request. * @throws ConflictException * Updating or deleting the resource can cause an inconsistent state. * @throws ResourceNotFoundException * The request references a resource which does not exist. * @throws ThrottlingException * The request was denied due to request throttling. * @sample AmazonScheduler.UntagResource * @see AWS API * Documentation */ UntagResourceResult untagResource(UntagResourceRequest untagResourceRequest); /** *
* Updates the specified schedule. When you call UpdateSchedule
, EventBridge Scheduler uses all values,
* including empty values, specified in the request and overrides the existing schedule. This is by design. This
* means that if you do not set an optional field in your request, that field will be set to its system-default
* value after the update.
*
* Before calling this operation, we recommend that you call the GetSchedule
API operation and make a
* note of all optional parameters for your UpdateSchedule
call.
*
* 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 a request. * * @param request * The originally executed request. * * @return The response metadata for the specified request, or null if none is available. */ ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request); }