describe_snapshot_schedules
(**kwargs)¶Returns a list of snapshot schedules.
See also: AWS API Documentation
Request Syntax
response = client.describe_snapshot_schedules(
ClusterIdentifier='string',
ScheduleIdentifier='string',
TagKeys=[
'string',
],
TagValues=[
'string',
],
Marker='string',
MaxRecords=123
)
The key value for a snapshot schedule tag.
The value corresponding to the key of the snapshot schedule tag.
marker
parameter and retrying the command. If the marker
field is empty, all response records have been retrieved for the request.MaxRecords
value, a value is returned in a marker
field of the response. You can retrieve the next set of records by retrying the command with the returned marker
value.dict
Response Syntax
{
'SnapshotSchedules': [
{
'ScheduleDefinitions': [
'string',
],
'ScheduleIdentifier': 'string',
'ScheduleDescription': 'string',
'Tags': [
{
'Key': 'string',
'Value': 'string'
},
],
'NextInvocations': [
datetime(2015, 1, 1),
],
'AssociatedClusterCount': 123,
'AssociatedClusters': [
{
'ClusterIdentifier': 'string',
'ScheduleAssociationState': 'MODIFYING'|'ACTIVE'|'FAILED'
},
]
},
],
'Marker': 'string'
}
Response Structure
(dict) --
SnapshotSchedules (list) --
A list of SnapshotSchedules.
(dict) --
Describes a snapshot schedule. You can set a regular interval for creating snapshots of a cluster. You can also schedule snapshots for specific dates.
ScheduleDefinitions (list) --
A list of ScheduleDefinitions.
ScheduleIdentifier (string) --
A unique identifier for the schedule.
ScheduleDescription (string) --
The description of the schedule.
Tags (list) --
An optional set of tags describing the schedule.
(dict) --
A tag consisting of a name/value pair for a resource.
Key (string) --
The key, or name, for the resource tag.
Value (string) --
The value for the resource tag.
NextInvocations (list) --
AssociatedClusterCount (integer) --
The number of clusters associated with the schedule.
AssociatedClusters (list) --
A list of clusters associated with the schedule. A maximum of 100 clusters is returned.
Marker (string) --
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the marker
parameter and retrying the command. If the marker
field is empty, all response records have been retrieved for the request.