Struct aws_sdk_iot::types::DomainConfigurationSummary
source · #[non_exhaustive]pub struct DomainConfigurationSummary {
pub domain_configuration_name: Option<String>,
pub domain_configuration_arn: Option<String>,
pub service_type: Option<ServiceType>,
}
Expand description
The summary of a domain configuration. A domain configuration specifies custom IoT-specific information about a domain. A domain configuration can be associated with an Amazon Web Services-managed domain (for example, dbc123defghijk.iot.us-west-2.amazonaws.com), a customer managed domain, or a default endpoint.
-
Data
-
Jobs
-
CredentialProvider
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_configuration_name: Option<String>
The name of the domain configuration. This value must be unique to a region.
domain_configuration_arn: Option<String>
The ARN of the domain configuration.
service_type: Option<ServiceType>
The type of service delivered by the endpoint.
Implementations§
source§impl DomainConfigurationSummary
impl DomainConfigurationSummary
sourcepub fn domain_configuration_name(&self) -> Option<&str>
pub fn domain_configuration_name(&self) -> Option<&str>
The name of the domain configuration. This value must be unique to a region.
sourcepub fn domain_configuration_arn(&self) -> Option<&str>
pub fn domain_configuration_arn(&self) -> Option<&str>
The ARN 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.
source§impl DomainConfigurationSummary
impl DomainConfigurationSummary
sourcepub fn builder() -> DomainConfigurationSummaryBuilder
pub fn builder() -> DomainConfigurationSummaryBuilder
Creates a new builder-style object to manufacture DomainConfigurationSummary
.
Trait Implementations§
source§impl Clone for DomainConfigurationSummary
impl Clone for DomainConfigurationSummary
source§fn clone(&self) -> DomainConfigurationSummary
fn clone(&self) -> DomainConfigurationSummary
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 Debug for DomainConfigurationSummary
impl Debug for DomainConfigurationSummary
source§impl PartialEq<DomainConfigurationSummary> for DomainConfigurationSummary
impl PartialEq<DomainConfigurationSummary> for DomainConfigurationSummary
source§fn eq(&self, other: &DomainConfigurationSummary) -> bool
fn eq(&self, other: &DomainConfigurationSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DomainConfigurationSummary
Auto Trait Implementations§
impl RefUnwindSafe for DomainConfigurationSummary
impl Send for DomainConfigurationSummary
impl Sync for DomainConfigurationSummary
impl Unpin for DomainConfigurationSummary
impl UnwindSafe for DomainConfigurationSummary
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