#[non_exhaustive]pub struct DescribeDomainsInput {
pub domain_names: Option<Vec<String>>,
}Expand description
Container for the parameters to the DescribeDomains operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.domain_names: Option<Vec<String>>Array of OpenSearch Service domain names that you want information about. You must specify at least one domain name.
Implementations§
source§impl DescribeDomainsInput
impl DescribeDomainsInput
sourcepub fn domain_names(&self) -> &[String]
pub fn domain_names(&self) -> &[String]
Array of OpenSearch Service domain names that you want information about. You must specify at least one domain name.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .domain_names.is_none().
source§impl DescribeDomainsInput
impl DescribeDomainsInput
sourcepub fn builder() -> DescribeDomainsInputBuilder
pub fn builder() -> DescribeDomainsInputBuilder
Creates a new builder-style object to manufacture DescribeDomainsInput.
Trait Implementations§
source§impl Clone for DescribeDomainsInput
impl Clone for DescribeDomainsInput
source§fn clone(&self) -> DescribeDomainsInput
fn clone(&self) -> DescribeDomainsInput
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 moresource§impl Debug for DescribeDomainsInput
impl Debug for DescribeDomainsInput
source§impl PartialEq for DescribeDomainsInput
impl PartialEq for DescribeDomainsInput
source§fn eq(&self, other: &DescribeDomainsInput) -> bool
fn eq(&self, other: &DescribeDomainsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeDomainsInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeDomainsInput
impl Send for DescribeDomainsInput
impl Sync for DescribeDomainsInput
impl Unpin for DescribeDomainsInput
impl UnwindSafe for DescribeDomainsInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.