Struct aws_sdk_redshift::operation::describe_scheduled_actions::DescribeScheduledActionsOutput
source · #[non_exhaustive]pub struct DescribeScheduledActionsOutput {
pub marker: Option<String>,
pub scheduled_actions: Option<Vec<ScheduledAction>>,
/* private fields */
}
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.marker: Option<String>
An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeScheduledActions
request exceed the value specified in MaxRecords
, Amazon Web Services returns a value in the Marker
field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker
parameter and retrying the request.
scheduled_actions: Option<Vec<ScheduledAction>>
List of retrieved scheduled actions.
Implementations§
source§impl DescribeScheduledActionsOutput
impl DescribeScheduledActionsOutput
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeScheduledActions
request exceed the value specified in MaxRecords
, Amazon Web Services returns a value in the Marker
field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker
parameter and retrying the request.
sourcepub fn scheduled_actions(&self) -> &[ScheduledAction]
pub fn scheduled_actions(&self) -> &[ScheduledAction]
List of retrieved scheduled actions.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .scheduled_actions.is_none()
.
source§impl DescribeScheduledActionsOutput
impl DescribeScheduledActionsOutput
sourcepub fn builder() -> DescribeScheduledActionsOutputBuilder
pub fn builder() -> DescribeScheduledActionsOutputBuilder
Creates a new builder-style object to manufacture DescribeScheduledActionsOutput
.
Trait Implementations§
source§impl Clone for DescribeScheduledActionsOutput
impl Clone for DescribeScheduledActionsOutput
source§fn clone(&self) -> DescribeScheduledActionsOutput
fn clone(&self) -> DescribeScheduledActionsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeScheduledActionsOutput
impl PartialEq for DescribeScheduledActionsOutput
source§fn eq(&self, other: &DescribeScheduledActionsOutput) -> bool
fn eq(&self, other: &DescribeScheduledActionsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeScheduledActionsOutput
impl RequestId for DescribeScheduledActionsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.