Struct aws_sdk_iam::operation::update_role::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 value 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.
IAM role credentials provided by Amazon EC2 instances assigned to the role are not subject to the specified maximum session duration.
Implementations§
source§impl 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 value 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.
IAM role credentials provided by Amazon EC2 instances assigned to the role are not subject to the specified maximum session duration.
source§impl UpdateRoleInput
impl UpdateRoleInput
sourcepub fn builder() -> UpdateRoleInputBuilder
pub fn builder() -> UpdateRoleInputBuilder
Creates a new builder-style object to manufacture UpdateRoleInput.
Trait Implementations§
source§impl Clone for UpdateRoleInput
impl Clone for UpdateRoleInput
source§fn clone(&self) -> UpdateRoleInput
fn clone(&self) -> UpdateRoleInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateRoleInput
impl Debug for UpdateRoleInput
source§impl PartialEq for UpdateRoleInput
impl PartialEq for UpdateRoleInput
source§fn eq(&self, other: &UpdateRoleInput) -> bool
fn eq(&self, other: &UpdateRoleInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateRoleInput
Auto Trait Implementations§
impl Freeze for UpdateRoleInput
impl RefUnwindSafe for UpdateRoleInput
impl Send for UpdateRoleInput
impl Sync for UpdateRoleInput
impl Unpin for UpdateRoleInput
impl UnwindSafe for UpdateRoleInput
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
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>
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>
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 more