Struct aws_sdk_iot::operation::create_domain_configuration::builders::CreateDomainConfigurationInputBuilder
source · #[non_exhaustive]pub struct CreateDomainConfigurationInputBuilder { /* private fields */ }
Expand description
A builder for CreateDomainConfigurationInput
.
Implementations§
source§impl CreateDomainConfigurationInputBuilder
impl CreateDomainConfigurationInputBuilder
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.
This field is required.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 get_domain_configuration_name(&self) -> &Option<String>
pub fn get_domain_configuration_name(&self) -> &Option<String>
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 get_domain_name(&self) -> &Option<String>
pub fn get_domain_name(&self) -> &Option<String>
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 server_certificate_arns
.
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 get_server_certificate_arns(&self) -> &Option<Vec<String>>
pub fn get_server_certificate_arns(&self) -> &Option<Vec<String>>
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.
sourcepub fn get_validation_certificate_arn(&self) -> &Option<String>
pub fn get_validation_certificate_arn(&self) -> &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 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.
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.
sourcepub fn get_service_type(&self) -> &Option<ServiceType>
pub fn get_service_type(&self) -> &Option<ServiceType>
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..."
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..."
sourcepub fn tls_config(self, input: TlsConfig) -> Self
pub fn tls_config(self, input: TlsConfig) -> Self
An object that specifies the TLS configuration for a domain.
sourcepub fn set_tls_config(self, input: Option<TlsConfig>) -> Self
pub fn set_tls_config(self, input: Option<TlsConfig>) -> Self
An object that specifies the TLS configuration for a domain.
sourcepub fn get_tls_config(&self) -> &Option<TlsConfig>
pub fn get_tls_config(&self) -> &Option<TlsConfig>
An object that specifies the TLS configuration for a domain.
sourcepub fn server_certificate_config(self, input: ServerCertificateConfig) -> Self
pub fn server_certificate_config(self, input: ServerCertificateConfig) -> Self
The server certificate configuration.
sourcepub fn set_server_certificate_config(
self,
input: Option<ServerCertificateConfig>
) -> Self
pub fn set_server_certificate_config( self, input: Option<ServerCertificateConfig> ) -> Self
The server certificate configuration.
sourcepub fn get_server_certificate_config(&self) -> &Option<ServerCertificateConfig>
pub fn get_server_certificate_config(&self) -> &Option<ServerCertificateConfig>
The server certificate configuration.
sourcepub fn build(self) -> Result<CreateDomainConfigurationInput, BuildError>
pub fn build(self) -> Result<CreateDomainConfigurationInput, BuildError>
Consumes the builder and constructs a CreateDomainConfigurationInput
.
source§impl CreateDomainConfigurationInputBuilder
impl CreateDomainConfigurationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateDomainConfigurationOutput, SdkError<CreateDomainConfigurationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateDomainConfigurationOutput, SdkError<CreateDomainConfigurationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateDomainConfigurationInputBuilder
impl Clone for CreateDomainConfigurationInputBuilder
source§fn clone(&self) -> CreateDomainConfigurationInputBuilder
fn clone(&self) -> CreateDomainConfigurationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateDomainConfigurationInputBuilder
impl Default for CreateDomainConfigurationInputBuilder
source§fn default() -> CreateDomainConfigurationInputBuilder
fn default() -> CreateDomainConfigurationInputBuilder
source§impl PartialEq for CreateDomainConfigurationInputBuilder
impl PartialEq for CreateDomainConfigurationInputBuilder
source§fn eq(&self, other: &CreateDomainConfigurationInputBuilder) -> bool
fn eq(&self, other: &CreateDomainConfigurationInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.