Struct aws_sdk_iot::operation::describe_domain_configuration::DescribeDomainConfigurationOutput
source · #[non_exhaustive]pub struct DescribeDomainConfigurationOutput { /* private fields */ }
Implementations§
source§impl DescribeDomainConfigurationOutput
impl DescribeDomainConfigurationOutput
sourcepub fn domain_configuration_name(&self) -> Option<&str>
pub fn domain_configuration_name(&self) -> Option<&str>
The name of the domain configuration.
sourcepub fn domain_configuration_arn(&self) -> Option<&str>
pub fn domain_configuration_arn(&self) -> Option<&str>
The ARN of the domain configuration.
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The name of the domain.
sourcepub fn server_certificates(&self) -> Option<&[ServerCertificateSummary]>
pub fn server_certificates(&self) -> Option<&[ServerCertificateSummary]>
A list containing summary information about the server certificate included in the domain configuration.
An object that specifies the authorization service for a domain.
sourcepub fn domain_configuration_status(&self) -> Option<&DomainConfigurationStatus>
pub fn domain_configuration_status(&self) -> Option<&DomainConfigurationStatus>
A Boolean value that specifies the current state of the domain configuration.
sourcepub fn service_type(&self) -> Option<&ServiceType>
pub fn service_type(&self) -> Option<&ServiceType>
The type of service delivered by the endpoint.
sourcepub fn domain_type(&self) -> Option<&DomainType>
pub fn domain_type(&self) -> Option<&DomainType>
The type of the domain.
sourcepub fn last_status_change_date(&self) -> Option<&DateTime>
pub fn last_status_change_date(&self) -> Option<&DateTime>
The date and time the domain configuration's status was last changed.
sourcepub fn tls_config(&self) -> Option<&TlsConfig>
pub fn tls_config(&self) -> Option<&TlsConfig>
An object that specifies the TLS configuration for a domain.
source§impl DescribeDomainConfigurationOutput
impl DescribeDomainConfigurationOutput
sourcepub fn builder() -> DescribeDomainConfigurationOutputBuilder
pub fn builder() -> DescribeDomainConfigurationOutputBuilder
Creates a new builder-style object to manufacture DescribeDomainConfigurationOutput
.
Trait Implementations§
source§impl Clone for DescribeDomainConfigurationOutput
impl Clone for DescribeDomainConfigurationOutput
source§fn clone(&self) -> DescribeDomainConfigurationOutput
fn clone(&self) -> DescribeDomainConfigurationOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<DescribeDomainConfigurationOutput> for DescribeDomainConfigurationOutput
impl PartialEq<DescribeDomainConfigurationOutput> for DescribeDomainConfigurationOutput
source§fn eq(&self, other: &DescribeDomainConfigurationOutput) -> bool
fn eq(&self, other: &DescribeDomainConfigurationOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeDomainConfigurationOutput
impl RequestId for DescribeDomainConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeDomainConfigurationOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeDomainConfigurationOutput
impl Send for DescribeDomainConfigurationOutput
impl Sync for DescribeDomainConfigurationOutput
impl Unpin for DescribeDomainConfigurationOutput
impl UnwindSafe for DescribeDomainConfigurationOutput
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
Mutably borrows from an owned value. Read more