#[non_exhaustive]pub struct UpdatePermissionSetInput {
pub instance_arn: Option<String>,
pub permission_set_arn: Option<String>,
pub description: Option<String>,
pub session_duration: Option<String>,
pub relay_state: Option<String>,
}
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.instance_arn: Option<String>
The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
permission_set_arn: Option<String>
The ARN of the permission set.
description: Option<String>
The description of the PermissionSet
.
session_duration: Option<String>
The length of time that the application user sessions are valid for in the ISO-8601 standard.
relay_state: Option<String>
Used to redirect users within the application during the federation authentication process.
Implementations§
source§impl UpdatePermissionSetInput
impl UpdatePermissionSetInput
sourcepub fn instance_arn(&self) -> Option<&str>
pub fn instance_arn(&self) -> Option<&str>
The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
sourcepub fn permission_set_arn(&self) -> Option<&str>
pub fn permission_set_arn(&self) -> Option<&str>
The ARN of the permission set.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the PermissionSet
.
sourcepub fn session_duration(&self) -> Option<&str>
pub fn session_duration(&self) -> Option<&str>
The length of time that the application user sessions are valid for in the ISO-8601 standard.
sourcepub fn relay_state(&self) -> Option<&str>
pub fn relay_state(&self) -> Option<&str>
Used to redirect users within the application during the federation authentication process.
source§impl UpdatePermissionSetInput
impl UpdatePermissionSetInput
sourcepub fn builder() -> UpdatePermissionSetInputBuilder
pub fn builder() -> UpdatePermissionSetInputBuilder
Creates a new builder-style object to manufacture UpdatePermissionSetInput
.
Trait Implementations§
source§impl Clone for UpdatePermissionSetInput
impl Clone for UpdatePermissionSetInput
source§fn clone(&self) -> UpdatePermissionSetInput
fn clone(&self) -> UpdatePermissionSetInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdatePermissionSetInput
impl Debug for UpdatePermissionSetInput
source§impl PartialEq for UpdatePermissionSetInput
impl PartialEq for UpdatePermissionSetInput
source§fn eq(&self, other: &UpdatePermissionSetInput) -> bool
fn eq(&self, other: &UpdatePermissionSetInput) -> bool
self
and other
values to be equal, and is used
by ==
.