Struct aws_sdk_redshift::operation::describe_custom_domain_associations::DescribeCustomDomainAssociationsOutput
source · #[non_exhaustive]pub struct DescribeCustomDomainAssociationsOutput {
pub marker: Option<String>,
pub associations: Option<Vec<Association>>,
/* private fields */
}
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.marker: Option<String>
The marker for the custom domain association.
associations: Option<Vec<Association>>
The associations for the custom domain.
Implementations§
source§impl DescribeCustomDomainAssociationsOutput
impl DescribeCustomDomainAssociationsOutput
sourcepub fn associations(&self) -> &[Association]
pub fn associations(&self) -> &[Association]
The associations for the custom domain.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .associations.is_none()
.
source§impl DescribeCustomDomainAssociationsOutput
impl DescribeCustomDomainAssociationsOutput
sourcepub fn builder() -> DescribeCustomDomainAssociationsOutputBuilder
pub fn builder() -> DescribeCustomDomainAssociationsOutputBuilder
Creates a new builder-style object to manufacture DescribeCustomDomainAssociationsOutput
.
Trait Implementations§
source§impl Clone for DescribeCustomDomainAssociationsOutput
impl Clone for DescribeCustomDomainAssociationsOutput
source§fn clone(&self) -> DescribeCustomDomainAssociationsOutput
fn clone(&self) -> DescribeCustomDomainAssociationsOutput
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 PartialEq for DescribeCustomDomainAssociationsOutput
impl PartialEq for DescribeCustomDomainAssociationsOutput
source§fn eq(&self, other: &DescribeCustomDomainAssociationsOutput) -> bool
fn eq(&self, other: &DescribeCustomDomainAssociationsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeCustomDomainAssociationsOutput
impl RequestId for DescribeCustomDomainAssociationsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeCustomDomainAssociationsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeCustomDomainAssociationsOutput
impl Send for DescribeCustomDomainAssociationsOutput
impl Sync for DescribeCustomDomainAssociationsOutput
impl Unpin for DescribeCustomDomainAssociationsOutput
impl UnwindSafe for DescribeCustomDomainAssociationsOutput
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.