Describe Fast Snapshot Restores
ec2_describe_fast_snapshot_restores | R Documentation |
Describes the state of fast snapshot restores for your snapshots¶
Description¶
Describes the state of fast snapshot restores for your snapshots.
Usage¶
ec2_describe_fast_snapshot_restores(Filters, MaxResults, NextToken,
DryRun)
Arguments¶
Filters |
The filters. The possible values are:
|
MaxResults |
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination. |
NextToken |
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request. |
DryRun |
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
|
Value¶
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"
)
Request syntax¶
svc$describe_fast_snapshot_restores(
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MaxResults = 123,
NextToken = "string",
DryRun = TRUE|FALSE
)