#[non_exhaustive]pub struct TransitGatewayMulticastDomainAssociations {
pub transit_gateway_multicast_domain_id: Option<String>,
pub transit_gateway_attachment_id: Option<String>,
pub resource_id: Option<String>,
pub resource_type: Option<TransitGatewayAttachmentResourceType>,
pub resource_owner_id: Option<String>,
pub subnets: Option<Vec<SubnetAssociation>>,
}
Expand description
Describes the multicast domain associations.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.transit_gateway_multicast_domain_id: Option<String>
The ID of the transit gateway multicast domain.
transit_gateway_attachment_id: Option<String>
The ID of the transit gateway attachment.
resource_id: Option<String>
The ID of the resource.
resource_type: Option<TransitGatewayAttachmentResourceType>
The type of resource, for example a VPC attachment.
resource_owner_id: Option<String>
The ID of the Amazon Web Services account that owns the resource.
subnets: Option<Vec<SubnetAssociation>>
The subnets associated with the multicast domain.
Implementations§
source§impl TransitGatewayMulticastDomainAssociations
impl TransitGatewayMulticastDomainAssociations
sourcepub fn transit_gateway_multicast_domain_id(&self) -> Option<&str>
pub fn transit_gateway_multicast_domain_id(&self) -> Option<&str>
The ID of the transit gateway multicast domain.
sourcepub fn transit_gateway_attachment_id(&self) -> Option<&str>
pub fn transit_gateway_attachment_id(&self) -> Option<&str>
The ID of the transit gateway attachment.
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
The ID of the resource.
sourcepub fn resource_type(&self) -> Option<&TransitGatewayAttachmentResourceType>
pub fn resource_type(&self) -> Option<&TransitGatewayAttachmentResourceType>
The type of resource, for example a VPC attachment.
sourcepub fn resource_owner_id(&self) -> Option<&str>
pub fn resource_owner_id(&self) -> Option<&str>
The ID of the Amazon Web Services account that owns the resource.
sourcepub fn subnets(&self) -> &[SubnetAssociation]
pub fn subnets(&self) -> &[SubnetAssociation]
The subnets associated with the multicast 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 .subnets.is_none()
.
source§impl TransitGatewayMulticastDomainAssociations
impl TransitGatewayMulticastDomainAssociations
sourcepub fn builder() -> TransitGatewayMulticastDomainAssociationsBuilder
pub fn builder() -> TransitGatewayMulticastDomainAssociationsBuilder
Creates a new builder-style object to manufacture TransitGatewayMulticastDomainAssociations
.
Trait Implementations§
source§impl Clone for TransitGatewayMulticastDomainAssociations
impl Clone for TransitGatewayMulticastDomainAssociations
source§fn clone(&self) -> TransitGatewayMulticastDomainAssociations
fn clone(&self) -> TransitGatewayMulticastDomainAssociations
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for TransitGatewayMulticastDomainAssociations
impl PartialEq for TransitGatewayMulticastDomainAssociations
source§fn eq(&self, other: &TransitGatewayMulticastDomainAssociations) -> bool
fn eq(&self, other: &TransitGatewayMulticastDomainAssociations) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TransitGatewayMulticastDomainAssociations
Auto Trait Implementations§
impl Freeze for TransitGatewayMulticastDomainAssociations
impl RefUnwindSafe for TransitGatewayMulticastDomainAssociations
impl Send for TransitGatewayMulticastDomainAssociations
impl Sync for TransitGatewayMulticastDomainAssociations
impl Unpin for TransitGatewayMulticastDomainAssociations
impl UnwindSafe for TransitGatewayMulticastDomainAssociations
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more