Struct aws_sdk_connect::types::InstanceSummary
source · #[non_exhaustive]pub struct InstanceSummary {
pub id: Option<String>,
pub arn: Option<String>,
pub identity_management_type: Option<DirectoryType>,
pub instance_alias: Option<String>,
pub created_time: Option<DateTime>,
pub service_role: Option<String>,
pub instance_status: Option<InstanceStatus>,
pub inbound_calls_enabled: Option<bool>,
pub outbound_calls_enabled: Option<bool>,
pub instance_access_url: Option<String>,
}
Expand description
Information about the instance.
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.id: Option<String>
The identifier of the instance.
arn: Option<String>
The Amazon Resource Name (ARN) of the instance.
identity_management_type: Option<DirectoryType>
The identity management type of the instance.
instance_alias: Option<String>
The alias of the instance.
created_time: Option<DateTime>
When the instance was created.
service_role: Option<String>
The service role of the instance.
instance_status: Option<InstanceStatus>
The state of the instance.
inbound_calls_enabled: Option<bool>
Whether inbound calls are enabled.
outbound_calls_enabled: Option<bool>
Whether outbound calls are enabled.
instance_access_url: Option<String>
This URL allows contact center users to access the Amazon Connect admin website.
Implementations§
source§impl InstanceSummary
impl InstanceSummary
sourcepub fn identity_management_type(&self) -> Option<&DirectoryType>
pub fn identity_management_type(&self) -> Option<&DirectoryType>
The identity management type of the instance.
sourcepub fn instance_alias(&self) -> Option<&str>
pub fn instance_alias(&self) -> Option<&str>
The alias of the instance.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
When the instance was created.
sourcepub fn service_role(&self) -> Option<&str>
pub fn service_role(&self) -> Option<&str>
The service role of the instance.
sourcepub fn instance_status(&self) -> Option<&InstanceStatus>
pub fn instance_status(&self) -> Option<&InstanceStatus>
The state of the instance.
sourcepub fn inbound_calls_enabled(&self) -> Option<bool>
pub fn inbound_calls_enabled(&self) -> Option<bool>
Whether inbound calls are enabled.
sourcepub fn outbound_calls_enabled(&self) -> Option<bool>
pub fn outbound_calls_enabled(&self) -> Option<bool>
Whether outbound calls are enabled.
sourcepub fn instance_access_url(&self) -> Option<&str>
pub fn instance_access_url(&self) -> Option<&str>
This URL allows contact center users to access the Amazon Connect admin website.
source§impl InstanceSummary
impl InstanceSummary
sourcepub fn builder() -> InstanceSummaryBuilder
pub fn builder() -> InstanceSummaryBuilder
Creates a new builder-style object to manufacture InstanceSummary
.
Trait Implementations§
source§impl Clone for InstanceSummary
impl Clone for InstanceSummary
source§fn clone(&self) -> InstanceSummary
fn clone(&self) -> InstanceSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InstanceSummary
impl Debug for InstanceSummary
source§impl PartialEq for InstanceSummary
impl PartialEq for InstanceSummary
source§fn eq(&self, other: &InstanceSummary) -> bool
fn eq(&self, other: &InstanceSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InstanceSummary
Auto Trait Implementations§
impl Freeze for InstanceSummary
impl RefUnwindSafe for InstanceSummary
impl Send for InstanceSummary
impl Sync for InstanceSummary
impl Unpin for InstanceSummary
impl UnwindSafe for InstanceSummary
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