Struct aws_sdk_connect::operation::update_authentication_profile::UpdateAuthenticationProfileInput
source · #[non_exhaustive]pub struct UpdateAuthenticationProfileInput {
pub authentication_profile_id: Option<String>,
pub instance_id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub allowed_ips: Option<Vec<String>>,
pub blocked_ips: Option<Vec<String>>,
pub periodic_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.authentication_profile_id: Option<String>
A unique identifier for the authentication profile.
instance_id: Option<String>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
name: Option<String>
The name for the authentication profile.
description: Option<String>
The description for the authentication profile.
allowed_ips: Option<Vec<String>>
A list of IP address range strings that are allowed to access the instance. For more information on how to configure IP addresses, seeConfigure session timeouts in the Amazon Connect Administrator Guide.
blocked_ips: Option<Vec<String>>
A list of IP address range strings that are blocked from accessing the instance. For more information on how to configure IP addresses, For more information on how to configure IP addresses, see Configure IP-based access control in the Amazon Connect Administrator Guide.
periodic_session_duration: Option<i32>
The short lived session duration configuration for users logged in to Amazon Connect, in minutes. This value determines the maximum possible time before an agent is authenticated. For more information, For more information on how to configure IP addresses, see Configure session timeouts in the Amazon Connect Administrator Guide.
Implementations§
source§impl UpdateAuthenticationProfileInput
impl UpdateAuthenticationProfileInput
sourcepub fn authentication_profile_id(&self) -> Option<&str>
pub fn authentication_profile_id(&self) -> Option<&str>
A unique identifier for the authentication profile.
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for the authentication profile.
sourcepub fn allowed_ips(&self) -> &[String]
pub fn allowed_ips(&self) -> &[String]
A list of IP address range strings that are allowed to access the instance. For more information on how to configure IP addresses, seeConfigure session timeouts in the Amazon Connect Administrator Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .allowed_ips.is_none()
.
sourcepub fn blocked_ips(&self) -> &[String]
pub fn blocked_ips(&self) -> &[String]
A list of IP address range strings that are blocked from accessing the instance. For more information on how to configure IP addresses, For more information on how to configure IP addresses, see Configure IP-based access control in the Amazon Connect Administrator Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .blocked_ips.is_none()
.
sourcepub fn periodic_session_duration(&self) -> Option<i32>
pub fn periodic_session_duration(&self) -> Option<i32>
The short lived session duration configuration for users logged in to Amazon Connect, in minutes. This value determines the maximum possible time before an agent is authenticated. For more information, For more information on how to configure IP addresses, see Configure session timeouts in the Amazon Connect Administrator Guide.
source§impl UpdateAuthenticationProfileInput
impl UpdateAuthenticationProfileInput
sourcepub fn builder() -> UpdateAuthenticationProfileInputBuilder
pub fn builder() -> UpdateAuthenticationProfileInputBuilder
Creates a new builder-style object to manufacture UpdateAuthenticationProfileInput
.
Trait Implementations§
source§impl Clone for UpdateAuthenticationProfileInput
impl Clone for UpdateAuthenticationProfileInput
source§fn clone(&self) -> UpdateAuthenticationProfileInput
fn clone(&self) -> UpdateAuthenticationProfileInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateAuthenticationProfileInput
impl PartialEq for UpdateAuthenticationProfileInput
source§fn eq(&self, other: &UpdateAuthenticationProfileInput) -> bool
fn eq(&self, other: &UpdateAuthenticationProfileInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateAuthenticationProfileInput
Auto Trait Implementations§
impl Freeze for UpdateAuthenticationProfileInput
impl RefUnwindSafe for UpdateAuthenticationProfileInput
impl Send for UpdateAuthenticationProfileInput
impl Sync for UpdateAuthenticationProfileInput
impl Unpin for UpdateAuthenticationProfileInput
impl UnwindSafe for UpdateAuthenticationProfileInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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