Struct rusoto_sqs::RemovePermissionRequest[][src]

pub struct RemovePermissionRequest {
    pub label: String,
    pub queue_url: String,
}

Fields

The identification of the permission to remove. This is the label added using the AddPermission action.

The URL of the Amazon SQS queue from which permissions are removed.

Queue URLs are case-sensitive.

Trait Implementations

impl Default for RemovePermissionRequest
[src]

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

impl Debug for RemovePermissionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for RemovePermissionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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