pub struct DescribeFastSnapshotRestoresRequest {
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§dry_run: Option<bool>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.
filters: Option<Vec<Filter>>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).
max_results: Option<i64>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
next_token: Option<String>The token for the next page of results.
Trait Implementations§
Source§impl Clone for DescribeFastSnapshotRestoresRequest
impl Clone for DescribeFastSnapshotRestoresRequest
Source§fn clone(&self) -> DescribeFastSnapshotRestoresRequest
fn clone(&self) -> DescribeFastSnapshotRestoresRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DescribeFastSnapshotRestoresRequest
impl Default for DescribeFastSnapshotRestoresRequest
Source§fn default() -> DescribeFastSnapshotRestoresRequest
fn default() -> DescribeFastSnapshotRestoresRequest
Source§impl PartialEq for DescribeFastSnapshotRestoresRequest
impl PartialEq for DescribeFastSnapshotRestoresRequest
Source§fn eq(&self, other: &DescribeFastSnapshotRestoresRequest) -> bool
fn eq(&self, other: &DescribeFastSnapshotRestoresRequest) -> bool
self and other values to be equal, and is used by ==.