Struct aws_sdk_iotwireless::operation::update_destination::builders::UpdateDestinationFluentBuilder
source · pub struct UpdateDestinationFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateDestination
.
Updates properties of a destination.
Implementations§
source§impl UpdateDestinationFluentBuilder
impl UpdateDestinationFluentBuilder
sourcepub fn as_input(&self) -> &UpdateDestinationInputBuilder
pub fn as_input(&self) -> &UpdateDestinationInputBuilder
Access the UpdateDestination as a reference.
sourcepub async fn send(
self
) -> Result<UpdateDestinationOutput, SdkError<UpdateDestinationError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateDestinationOutput, SdkError<UpdateDestinationError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<UpdateDestinationOutput, UpdateDestinationError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateDestinationOutput, UpdateDestinationError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn expression_type(self, input: ExpressionType) -> Self
pub fn expression_type(self, input: ExpressionType) -> Self
The type of value in Expression
.
sourcepub fn set_expression_type(self, input: Option<ExpressionType>) -> Self
pub fn set_expression_type(self, input: Option<ExpressionType>) -> Self
The type of value in Expression
.
sourcepub fn get_expression_type(&self) -> &Option<ExpressionType>
pub fn get_expression_type(&self) -> &Option<ExpressionType>
The type of value in Expression
.
sourcepub fn expression(self, input: impl Into<String>) -> Self
pub fn expression(self, input: impl Into<String>) -> Self
The new rule name or topic rule to send messages to.
sourcepub fn set_expression(self, input: Option<String>) -> Self
pub fn set_expression(self, input: Option<String>) -> Self
The new rule name or topic rule to send messages to.
sourcepub fn get_expression(&self) -> &Option<String>
pub fn get_expression(&self) -> &Option<String>
The new rule name or topic rule to send messages to.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A new description of the resource.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A new description of the resource.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A new description of the resource.
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 authorizes the destination.
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 authorizes the destination.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
The ARN of the IAM Role that authorizes the destination.
Trait Implementations§
source§impl Clone for UpdateDestinationFluentBuilder
impl Clone for UpdateDestinationFluentBuilder
source§fn clone(&self) -> UpdateDestinationFluentBuilder
fn clone(&self) -> UpdateDestinationFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more