Struct aws_sdk_iot::types::builders::SqsActionBuilder
source · #[non_exhaustive]pub struct SqsActionBuilder { /* private fields */ }
Expand description
A builder for SqsAction
.
Implementations§
source§impl SqsActionBuilder
impl SqsActionBuilder
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The ARN of the IAM role that grants access.
This field is required.sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The ARN of the IAM role that grants access.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
The ARN of the IAM role that grants access.
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.
This field is required.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.
sourcepub fn get_queue_url(&self) -> &Option<String>
pub fn get_queue_url(&self) -> &Option<String>
The URL of the Amazon SQS queue.
sourcepub fn use_base64(self, input: bool) -> Self
pub fn use_base64(self, input: bool) -> Self
Specifies whether to use Base64 encoding.
sourcepub fn set_use_base64(self, input: Option<bool>) -> Self
pub fn set_use_base64(self, input: Option<bool>) -> Self
Specifies whether to use Base64 encoding.
sourcepub fn get_use_base64(&self) -> &Option<bool>
pub fn get_use_base64(&self) -> &Option<bool>
Specifies whether to use Base64 encoding.
Trait Implementations§
source§impl Clone for SqsActionBuilder
impl Clone for SqsActionBuilder
source§fn clone(&self) -> SqsActionBuilder
fn clone(&self) -> SqsActionBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SqsActionBuilder
impl Debug for SqsActionBuilder
source§impl Default for SqsActionBuilder
impl Default for SqsActionBuilder
source§fn default() -> SqsActionBuilder
fn default() -> SqsActionBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SqsActionBuilder
impl PartialEq for SqsActionBuilder
impl StructuralPartialEq for SqsActionBuilder
Auto Trait Implementations§
impl Freeze for SqsActionBuilder
impl RefUnwindSafe for SqsActionBuilder
impl Send for SqsActionBuilder
impl Sync for SqsActionBuilder
impl Unpin for SqsActionBuilder
impl UnwindSafe for SqsActionBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.