Describes the state of fast snapshot restores for your snapshots.
ec2_describe_fast_snapshot_restores(Filters, MaxResults, NextToken,
DryRun)
A list with the following syntax:
list(
FastSnapshotRestores = list(
list(
SnapshotId = "string",
AvailabilityZone = "string",
State = "enabling"|"optimizing"|"enabled"|"disabling"|"disabled",
StateTransitionReason = "string",
OwnerId = "string",
OwnerAlias = "string",
EnablingTime = as.POSIXct(
"2015-01-01"
),
OptimizingTime = as.POSIXct(
"2015-01-01"
),
EnabledTime = as.POSIXct(
"2015-01-01"
),
DisablingTime = as.POSIXct(
"2015-01-01"
),
DisabledTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
The filters. The possible values are:
availability-zone
: The Availability Zone of the snapshot.
owner-id
: The ID of the AWS account that enabled fast snapshot
restore on the snapshot.
snapshot-id
: The ID of the snapshot.
state
: The state of fast snapshot restores for the snapshot
(enabling
| optimizing
| enabled
| disabling
| disabled
).
The maximum number of results to return with a single call. To retrieve
the remaining results, make another call with the returned nextToken
value.
The token for the next page of results.
Checks whether you have the required permissions for the action, without
actually making the request, and provides an error response. If you have
the required permissions, the error response is DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
svc$describe_fast_snapshot_restores(
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MaxResults = 123,
NextToken = "string",
DryRun = TRUE|FALSE
)