#[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
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.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) -> Option<&[SubnetAssociation]>
pub fn subnets(&self) -> Option<&[SubnetAssociation]>
The subnets associated with the multicast domain.
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
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<TransitGatewayMulticastDomainAssociations> for TransitGatewayMulticastDomainAssociations
impl PartialEq<TransitGatewayMulticastDomainAssociations> for TransitGatewayMulticastDomainAssociations
source§fn eq(&self, other: &TransitGatewayMulticastDomainAssociations) -> bool
fn eq(&self, other: &TransitGatewayMulticastDomainAssociations) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TransitGatewayMulticastDomainAssociations
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more