#[non_exhaustive]pub struct DomainEndpointOptionsStatus { /* private fields */ }Expand description
The configuration and status of the domain's endpoint options.
Implementations§
source§impl DomainEndpointOptionsStatus
impl DomainEndpointOptionsStatus
sourcepub fn options(&self) -> Option<&DomainEndpointOptions>
pub fn options(&self) -> Option<&DomainEndpointOptions>
The domain endpoint options configured for the domain.
sourcepub fn status(&self) -> Option<&OptionStatus>
pub fn status(&self) -> Option<&OptionStatus>
The status of the configured domain endpoint options.
source§impl DomainEndpointOptionsStatus
impl DomainEndpointOptionsStatus
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DomainEndpointOptionsStatus.
Examples found in repository?
src/xml_deser.rs (line 2079)
2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106
pub fn deser_structure_crate_model_domain_endpoint_options_status(
decoder: &mut aws_smithy_xml::decode::ScopedDecoder,
) -> Result<crate::model::DomainEndpointOptionsStatus, aws_smithy_xml::decode::XmlDecodeError> {
#[allow(unused_mut)]
let mut builder = crate::model::DomainEndpointOptionsStatus::builder();
while let Some(mut tag) = decoder.next_tag() {
match tag.start_el() {
s if s.matches("Options") /* Options com.amazonaws.cloudsearch#DomainEndpointOptionsStatus$Options */ => {
let var_66 =
Some(
crate::xml_deser::deser_structure_crate_model_domain_endpoint_options(&mut tag)
?
)
;
builder = builder.set_options(var_66);
}
,
s if s.matches("Status") /* Status com.amazonaws.cloudsearch#DomainEndpointOptionsStatus$Status */ => {
let var_67 =
Some(
crate::xml_deser::deser_structure_crate_model_option_status(&mut tag)
?
)
;
builder = builder.set_status(var_67);
}
,
_ => {}
}
}
Ok(builder.build())
}Trait Implementations§
source§impl Clone for DomainEndpointOptionsStatus
impl Clone for DomainEndpointOptionsStatus
source§fn clone(&self) -> DomainEndpointOptionsStatus
fn clone(&self) -> DomainEndpointOptionsStatus
Returns a copy 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 more