Struct aws_sdk_sqs::input::remove_permission_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for RemovePermissionInput
.
Implementations§
source§impl Builder
impl Builder
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.
sourcepub fn label(self, input: impl Into<String>) -> Self
pub fn label(self, input: impl Into<String>) -> Self
The identification of the permission to remove. This is the label added using the
action.AddPermission
sourcepub fn set_label(self, input: Option<String>) -> Self
pub fn set_label(self, input: Option<String>) -> Self
The identification of the permission to remove. This is the label added using the
action.AddPermission
sourcepub fn build(self) -> Result<RemovePermissionInput, BuildError>
pub fn build(self) -> Result<RemovePermissionInput, BuildError>
Consumes the builder and constructs a RemovePermissionInput
.