Struct rusoto_alexaforbusiness::ListSkillsRequest[][src]

pub struct ListSkillsRequest {
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub skill_group_arn: Option<String>,
}

Fields

The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved. Required.

An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults. Required.

The ARN of the skill group for which to list enabled skills. Required.

Trait Implementations

impl Default for ListSkillsRequest
[src]

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

impl Debug for ListSkillsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListSkillsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListSkillsRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations