Struct aws_sdk_iot::client::fluent_builders::UpdateRoleAlias
source · pub struct UpdateRoleAlias { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateRoleAlias
.
Updates a role alias.
Requires permission to access the UpdateRoleAlias action.
Implementations§
source§impl UpdateRoleAlias
impl UpdateRoleAlias
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateRoleAlias, AwsResponseRetryClassifier>, SdkError<UpdateRoleAliasError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateRoleAlias, AwsResponseRetryClassifier>, SdkError<UpdateRoleAliasError>>
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<UpdateRoleAliasOutput, SdkError<UpdateRoleAliasError>>
pub async fn send(
self
) -> Result<UpdateRoleAliasOutput, SdkError<UpdateRoleAliasError>>
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 role_alias(self, input: impl Into<String>) -> Self
pub fn role_alias(self, input: impl Into<String>) -> Self
The role alias to update.
sourcepub fn set_role_alias(self, input: Option<String>) -> Self
pub fn set_role_alias(self, input: Option<String>) -> Self
The role alias to update.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The role ARN.
sourcepub fn credential_duration_seconds(self, input: i32) -> Self
pub fn credential_duration_seconds(self, input: i32) -> Self
The number of seconds the credential will be valid.
This value must be less than or equal to the maximum session duration of the IAM role that the role alias references.
sourcepub fn set_credential_duration_seconds(self, input: Option<i32>) -> Self
pub fn set_credential_duration_seconds(self, input: Option<i32>) -> Self
The number of seconds the credential will be valid.
This value must be less than or equal to the maximum session duration of the IAM role that the role alias references.
Trait Implementations§
source§impl Clone for UpdateRoleAlias
impl Clone for UpdateRoleAlias
source§fn clone(&self) -> UpdateRoleAlias
fn clone(&self) -> UpdateRoleAlias
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more