Struct aws_sdk_sqs::client::fluent_builders::RemovePermission
source · pub struct RemovePermission { /* private fields */ }
Expand description
Fluent builder constructing a request to RemovePermission
.
Revokes any permissions in the queue policy that matches the specified Label
parameter.
-
Only the owner of a queue can remove permissions from it.
-
Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a user name in the Amazon SQS Developer Guide.
-
To remove the ability to change queue permissions, you must deny permission to the
AddPermission
,RemovePermission
, andSetQueueAttributes
actions in your IAM policy.
Implementations§
source§impl RemovePermission
impl RemovePermission
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<RemovePermission, AwsResponseRetryClassifier>, SdkError<RemovePermissionError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<RemovePermission, AwsResponseRetryClassifier>, SdkError<RemovePermissionError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<RemovePermissionOutput, SdkError<RemovePermissionError>>
pub async fn send(
self
) -> Result<RemovePermissionOutput, SdkError<RemovePermissionError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn queue_url(self, input: impl Into<String>) -> Self
pub fn queue_url(self, input: impl Into<String>) -> Self
The URL of the Amazon SQS queue from which permissions are removed.
Queue URLs and names are case-sensitive.
sourcepub fn set_queue_url(self, input: Option<String>) -> Self
pub fn set_queue_url(self, input: Option<String>) -> Self
The URL of the Amazon SQS queue from which permissions are removed.
Queue URLs and names are case-sensitive.
Trait Implementations§
source§impl Clone for RemovePermission
impl Clone for RemovePermission
source§fn clone(&self) -> RemovePermission
fn clone(&self) -> RemovePermission
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more