Struct aws_sdk_iam::input::UpdateRoleInput
source · [−]#[non_exhaustive]pub struct UpdateRoleInput {
pub role_name: Option<String>,
pub description: Option<String>,
pub max_session_duration: Option<i32>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.role_name: Option<String>
The name of the role that you want to modify.
description: Option<String>
The new description that you want to apply to the specified role.
max_session_duration: Option<i32>
The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default maximum of one hour is applied. This setting can have a value from 1 hour to 12 hours.
Anyone who assumes the role from the CLI or API can use the DurationSeconds
API parameter or the duration-seconds
CLI parameter to request a longer session. The MaxSessionDuration
setting determines the maximum duration that can be requested using the DurationSeconds
parameter. If users don't specify a value for the DurationSeconds
parameter, their security credentials are valid for one hour by default. This applies when you use the AssumeRole*
API operations or the assume-role*
CLI operations but does not apply when you use those operations to create a console URL. For more information, see Using IAM roles in the IAM User Guide.
Implementations
sourceimpl UpdateRoleInput
impl UpdateRoleInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateRole, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateRole, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateRole
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateRoleInput
sourceimpl UpdateRoleInput
impl UpdateRoleInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The new description that you want to apply to the specified role.
sourcepub fn max_session_duration(&self) -> Option<i32>
pub fn max_session_duration(&self) -> Option<i32>
The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default maximum of one hour is applied. This setting can have a value from 1 hour to 12 hours.
Anyone who assumes the role from the CLI or API can use the DurationSeconds
API parameter or the duration-seconds
CLI parameter to request a longer session. The MaxSessionDuration
setting determines the maximum duration that can be requested using the DurationSeconds
parameter. If users don't specify a value for the DurationSeconds
parameter, their security credentials are valid for one hour by default. This applies when you use the AssumeRole*
API operations or the assume-role*
CLI operations but does not apply when you use those operations to create a console URL. For more information, see Using IAM roles in the IAM User Guide.
Trait Implementations
sourceimpl Clone for UpdateRoleInput
impl Clone for UpdateRoleInput
sourcefn clone(&self) -> UpdateRoleInput
fn clone(&self) -> UpdateRoleInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UpdateRoleInput
impl Debug for UpdateRoleInput
sourceimpl PartialEq<UpdateRoleInput> for UpdateRoleInput
impl PartialEq<UpdateRoleInput> for UpdateRoleInput
sourcefn eq(&self, other: &UpdateRoleInput) -> bool
fn eq(&self, other: &UpdateRoleInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UpdateRoleInput) -> bool
fn ne(&self, other: &UpdateRoleInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for UpdateRoleInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateRoleInput
impl Send for UpdateRoleInput
impl Sync for UpdateRoleInput
impl Unpin for UpdateRoleInput
impl UnwindSafe for UpdateRoleInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more