Struct aws_sdk_redshift::input::DescribeSnapshotSchedulesInput [−][src]
#[non_exhaustive]pub struct DescribeSnapshotSchedulesInput {
pub cluster_identifier: Option<String>,
pub schedule_identifier: Option<String>,
pub tag_keys: Option<Vec<String>>,
pub tag_values: Option<Vec<String>>,
pub marker: Option<String>,
pub max_records: Option<i32>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cluster_identifier: Option<String>
The unique identifier for the cluster whose snapshot schedules you want to view.
schedule_identifier: Option<String>
A unique identifier for a snapshot schedule.
tag_keys: Option<Vec<String>>
The key value for a snapshot schedule tag.
tag_values: Option<Vec<String>>
The value corresponding to the key of the snapshot schedule tag.
marker: Option<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.
max_records: Option<i32>
The maximum number or response records to return in each call. If the number of
remaining response records exceeds the specified 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeSnapshotSchedules, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeSnapshotSchedules, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeSnapshotSchedules
>
Creates a new builder-style object to manufacture DescribeSnapshotSchedulesInput
The unique identifier for the cluster whose snapshot schedules you want to view.
A unique identifier for a snapshot schedule.
The value corresponding to the key of the snapshot schedule tag.
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.
The maximum number or response records to return in each call. If the number of
remaining response records exceeds the specified 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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for DescribeSnapshotSchedulesInput
impl Sync for DescribeSnapshotSchedulesInput
impl Unpin for DescribeSnapshotSchedulesInput
impl UnwindSafe for DescribeSnapshotSchedulesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more