Struct aws_sdk_sqs::input::get_queue_url_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for GetQueueUrlInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn queue_name(self, input: impl Into<String>) -> Self
pub fn queue_name(self, input: impl Into<String>) -> Self
The name of the queue whose URL must be fetched. Maximum 80 characters. Valid values: alphanumeric characters, hyphens (-
), and underscores (_
).
Queue URLs and names are case-sensitive.
sourcepub fn set_queue_name(self, input: Option<String>) -> Self
pub fn set_queue_name(self, input: Option<String>) -> Self
The name of the queue whose URL must be fetched. Maximum 80 characters. Valid values: alphanumeric characters, hyphens (-
), and underscores (_
).
Queue URLs and names are case-sensitive.
sourcepub fn queue_owner_aws_account_id(self, input: impl Into<String>) -> Self
pub fn queue_owner_aws_account_id(self, input: impl Into<String>) -> Self
The Amazon Web Services account ID of the account that created the queue.
sourcepub fn set_queue_owner_aws_account_id(self, input: Option<String>) -> Self
pub fn set_queue_owner_aws_account_id(self, input: Option<String>) -> Self
The Amazon Web Services account ID of the account that created the queue.
sourcepub fn build(self) -> Result<GetQueueUrlInput, BuildError>
pub fn build(self) -> Result<GetQueueUrlInput, BuildError>
Consumes the builder and constructs a GetQueueUrlInput
.