#[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 ==
.