pub struct DescribeDomainConfigurationResponse {
pub authorizer_config: Option<AuthorizerConfig>,
pub domain_configuration_arn: Option<String>,
pub domain_configuration_name: Option<String>,
pub domain_configuration_status: Option<String>,
pub domain_name: Option<String>,
pub domain_type: Option<String>,
pub server_certificates: Option<Vec<ServerCertificateSummary>>,
pub service_type: Option<String>,
}Fields§
An object that specifies the authorization service for a domain.
domain_configuration_arn: Option<String>The ARN of the domain configuration.
domain_configuration_name: Option<String>The name of the domain configuration.
domain_configuration_status: Option<String>A Boolean value that specifies the current state of the domain configuration.
domain_name: Option<String>The name of the domain.
domain_type: Option<String>The type of the domain.
server_certificates: Option<Vec<ServerCertificateSummary>>A list containing summary information about the server certificate included in the domain configuration.
service_type: Option<String>The type of service delivered by the endpoint.
Trait Implementations§
Source§impl Clone for DescribeDomainConfigurationResponse
impl Clone for DescribeDomainConfigurationResponse
Source§fn clone(&self) -> DescribeDomainConfigurationResponse
fn clone(&self) -> DescribeDomainConfigurationResponse
Returns a duplicate 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 Default for DescribeDomainConfigurationResponse
impl Default for DescribeDomainConfigurationResponse
Source§fn default() -> DescribeDomainConfigurationResponse
fn default() -> DescribeDomainConfigurationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeDomainConfigurationResponse
impl<'de> Deserialize<'de> for DescribeDomainConfigurationResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeDomainConfigurationResponse
impl PartialEq for DescribeDomainConfigurationResponse
Source§fn eq(&self, other: &DescribeDomainConfigurationResponse) -> bool
fn eq(&self, other: &DescribeDomainConfigurationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeDomainConfigurationResponse
Auto Trait Implementations§
impl Freeze for DescribeDomainConfigurationResponse
impl RefUnwindSafe for DescribeDomainConfigurationResponse
impl Send for DescribeDomainConfigurationResponse
impl Sync for DescribeDomainConfigurationResponse
impl Unpin for DescribeDomainConfigurationResponse
impl UnwindSafe for DescribeDomainConfigurationResponse
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