[][src]Struct rusoto_iot::CreateDomainConfigurationRequest

pub struct CreateDomainConfigurationRequest {
    pub authorizer_config: Option<AuthorizerConfig>,
    pub domain_configuration_name: String,
    pub domain_name: Option<String>,
    pub server_certificate_arns: Option<Vec<String>>,
    pub service_type: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub validation_certificate_arn: Option<String>,
}

Fields

authorizer_config: Option<AuthorizerConfig>

An object that specifies the authorization service for a domain.

domain_configuration_name: String

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

domain_name: Option<String>

The name of the domain.

server_certificate_arns: Option<Vec<String>>

The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN. This value is not required for AWS-managed domains.

service_type: Option<String>

The type of service delivered by the endpoint.

AWS IoT Core currently supports only the DATA service type.

tags: Option<Vec<Tag>>

Metadata which can be used to manage the domain configuration.

For URI Request parameters use format: ...key1=value1&key2=value2...

For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."

For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

validation_certificate_arn: Option<String>

The certificate used to validate the server certificate and prove domain name ownership. This certificate must be signed by a public certificate authority. This value is not required for AWS-managed domains.

Trait Implementations

impl Clone for CreateDomainConfigurationRequest[src]

impl Debug for CreateDomainConfigurationRequest[src]

impl Default for CreateDomainConfigurationRequest[src]

impl PartialEq<CreateDomainConfigurationRequest> for CreateDomainConfigurationRequest[src]

impl Serialize for CreateDomainConfigurationRequest[src]

impl StructuralPartialEq for CreateDomainConfigurationRequest[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> 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> Sealed<T> for T where
    T: ?Sized

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.