Struct rusoto_opsworks::DescribeServiceErrorsRequest[][src]

pub struct DescribeServiceErrorsRequest {
    pub instance_id: Option<String>,
    pub service_error_ids: Option<Vec<String>>,
    pub stack_id: Option<String>,
}

Fields

The instance ID. If you use this parameter, DescribeServiceErrors returns descriptions of the errors associated with the specified instance.

An array of service error IDs. If you use this parameter, DescribeServiceErrors returns descriptions of the specified errors. Otherwise, it returns a description of every error.

The stack ID. If you use this parameter, DescribeServiceErrors returns descriptions of the errors associated with the specified stack.

Trait Implementations

impl Default for DescribeServiceErrorsRequest
[src]

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

impl Debug for DescribeServiceErrorsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeServiceErrorsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeServiceErrorsRequest
[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