Client
eventbridgescheduler | R Documentation |
Amazon EventBridge Scheduler¶
Description¶
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.
Usage¶
eventbridgescheduler(
config = list(),
credentials = list(),
endpoint = NULL,
region = NULL
)
Arguments¶
config |
Optional configuration of credentials, endpoint, and/or region.
|
credentials |
Optional credentials shorthand for the config parameter
|
endpoint |
Optional shorthand for complete URL to use for the constructed client. |
region |
Optional shorthand for AWS Region used in instantiating the client. |
Value¶
A client for the service. You can call the service's operations using
syntax like svc$operation(...)
, where svc
is the name you've
assigned to the client. The available operations are listed in the
Operations section.
Service syntax¶
svc <- eventbridgescheduler(
config = list(
credentials = list(
creds = list(
access_key_id = "string",
secret_access_key = "string",
session_token = "string"
),
profile = "string",
anonymous = "logical"
),
endpoint = "string",
region = "string",
close_connection = "logical",
timeout = "numeric",
s3_force_path_style = "logical",
sts_regional_endpoint = "string"
),
credentials = list(
creds = list(
access_key_id = "string",
secret_access_key = "string",
session_token = "string"
),
profile = "string",
anonymous = "logical"
),
endpoint = "string",
region = "string"
)
Operations¶
create_schedule | Creates the specified schedule |
create_schedule_group | Creates the specified schedule group |
delete_schedule | Deletes the specified schedule |
delete_schedule_group | Deletes the specified schedule group |
get_schedule | Retrieves the specified schedule |
get_schedule_group | Retrieves the specified schedule group |
list_schedule_groups | Returns a paginated list of your schedule groups |
list_schedules | Returns a paginated list of your EventBridge Scheduler schedules |
list_tags_for_resource | Lists the tags associated with the Scheduler resource |
tag_resource | Assigns one or more tags (key-value pairs) to the specified EventBridge Scheduler resource |
untag_resource | Removes one or more tags from the specified EventBridge Scheduler schedule group |
update_schedule | Updates the specified schedule |
Examples¶
## Not run:
svc <- eventbridgescheduler()
svc$create_schedule(
Foo = 123
)
## End(Not run)