Struct rusoto_autoscaling::DescribeScheduledActionsType [] [src]

pub struct DescribeScheduledActionsType {
    pub auto_scaling_group_name: Option<String>,
    pub end_time: Option<String>,
    pub max_records: Option<i64>,
    pub next_token: Option<String>,
    pub scheduled_action_names: Option<Vec<String>>,
    pub start_time: Option<String>,
}

Contains the parameters for DescribeScheduledActions.

Fields

The name of the group.

The latest scheduled start time to return. If scheduled action names are provided, this parameter is ignored.

The maximum number of items to return with this call. The default value is 50 and the maximum value is 100.

The token for the next set of items to return. (You received this token from a previous call.)

Describes one or more scheduled actions. If you omit this parameter, all scheduled actions are described. If you specify an unknown scheduled action, it is ignored with no error.

You can describe up to a maximum of 50 instances with a single call. If there are more items to return, the call returns a token. To get the next set of items, repeat the call with the returned token.

The earliest scheduled start time to return. If scheduled action names are provided, this parameter is ignored.

Trait Implementations

impl Default for DescribeScheduledActionsType
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeScheduledActionsType
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeScheduledActionsType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations