pub struct CreateDomainConfiguration { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateDomainConfiguration
.
Creates a domain configuration.
Requires permission to access the CreateDomainConfiguration action.
Implementations§
source§impl CreateDomainConfiguration
impl CreateDomainConfiguration
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateDomainConfiguration, AwsResponseRetryClassifier>, SdkError<CreateDomainConfigurationError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateDomainConfiguration, AwsResponseRetryClassifier>, SdkError<CreateDomainConfigurationError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateDomainConfigurationOutput, SdkError<CreateDomainConfigurationError>>
pub async fn send(
self
) -> Result<CreateDomainConfigurationOutput, SdkError<CreateDomainConfigurationError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn domain_configuration_name(self, input: impl Into<String>) -> Self
pub fn domain_configuration_name(self, input: impl Into<String>) -> Self
The name of the domain configuration. This value must be unique to a region.
sourcepub fn set_domain_configuration_name(self, input: Option<String>) -> Self
pub fn set_domain_configuration_name(self, input: Option<String>) -> Self
The name of the domain configuration. This value must be unique to a region.
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
The name of the domain.
sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
The name of the domain.
sourcepub fn server_certificate_arns(self, input: impl Into<String>) -> Self
pub fn server_certificate_arns(self, input: impl Into<String>) -> Self
Appends an item to serverCertificateArns
.
To override the contents of this collection use set_server_certificate_arns
.
The ARNs of the certificates that IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN. This value is not required for Amazon Web Services-managed domains.
sourcepub fn set_server_certificate_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_server_certificate_arns(self, input: Option<Vec<String>>) -> Self
The ARNs of the certificates that IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN. This value is not required for Amazon Web Services-managed domains.
sourcepub fn validation_certificate_arn(self, input: impl Into<String>) -> Self
pub fn validation_certificate_arn(self, input: impl Into<String>) -> Self
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 Amazon Web Services-managed domains.
sourcepub fn set_validation_certificate_arn(self, input: Option<String>) -> Self
pub fn set_validation_certificate_arn(self, input: Option<String>) -> Self
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 Amazon Web Services-managed domains.
An object that specifies the authorization service for a domain.
An object that specifies the authorization service for a domain.
sourcepub fn service_type(self, input: ServiceType) -> Self
pub fn service_type(self, input: ServiceType) -> Self
The type of service delivered by the endpoint.
Amazon Web Services IoT Core currently supports only the DATA
service type.
sourcepub fn set_service_type(self, input: Option<ServiceType>) -> Self
pub fn set_service_type(self, input: Option<ServiceType>) -> Self
The type of service delivered by the endpoint.
Amazon Web Services IoT Core currently supports only the DATA
service type.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
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..."
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..."
Trait Implementations§
source§impl Clone for CreateDomainConfiguration
impl Clone for CreateDomainConfiguration
source§fn clone(&self) -> CreateDomainConfiguration
fn clone(&self) -> CreateDomainConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more