[][src]Struct rusoto_iot::DomainConfigurationSummary

pub struct DomainConfigurationSummary {
    pub domain_configuration_arn: Option<String>,
    pub domain_configuration_name: Option<String>,
    pub service_type: Option<String>,
}

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 AWS-managed domain (for example, dbc123defghijk.iot.us-west-2.amazonaws.com), a customer managed domain, or a default endpoint.

  • Data

  • Jobs

  • CredentialProvider

The domain configuration feature is in public preview and is subject to change.

Fields

domain_configuration_arn: Option<String>

The ARN of the domain configuration.

domain_configuration_name: Option<String>

The name of the domain configuration. This value must be unique to a region.

service_type: Option<String>

The type of service delivered by the endpoint.

Trait Implementations

impl Clone for DomainConfigurationSummary[src]

impl Debug for DomainConfigurationSummary[src]

impl Default for DomainConfigurationSummary[src]

impl<'de> Deserialize<'de> for DomainConfigurationSummary[src]

impl PartialEq<DomainConfigurationSummary> for DomainConfigurationSummary[src]

impl StructuralPartialEq for DomainConfigurationSummary[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.