pub struct ModifyTransitGatewayPrefixListReferenceRequest {
pub blackhole: Option<bool>,
pub dry_run: Option<bool>,
pub prefix_list_id: String,
pub transit_gateway_attachment_id: Option<String>,
pub transit_gateway_route_table_id: String,
}
Fields§
§blackhole: Option<bool>
Indicates whether to drop traffic that matches this route.
dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
prefix_list_id: String
The ID of the prefix list.
transit_gateway_attachment_id: Option<String>
The ID of the attachment to which traffic is routed.
transit_gateway_route_table_id: String
The ID of the transit gateway route table.
Trait Implementations§
Source§impl Clone for ModifyTransitGatewayPrefixListReferenceRequest
impl Clone for ModifyTransitGatewayPrefixListReferenceRequest
Source§fn clone(&self) -> ModifyTransitGatewayPrefixListReferenceRequest
fn clone(&self) -> ModifyTransitGatewayPrefixListReferenceRequest
Returns a duplicate 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 Default for ModifyTransitGatewayPrefixListReferenceRequest
impl Default for ModifyTransitGatewayPrefixListReferenceRequest
Source§fn default() -> ModifyTransitGatewayPrefixListReferenceRequest
fn default() -> ModifyTransitGatewayPrefixListReferenceRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyTransitGatewayPrefixListReferenceRequest
impl PartialEq for ModifyTransitGatewayPrefixListReferenceRequest
Source§fn eq(&self, other: &ModifyTransitGatewayPrefixListReferenceRequest) -> bool
fn eq(&self, other: &ModifyTransitGatewayPrefixListReferenceRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyTransitGatewayPrefixListReferenceRequest
Auto Trait Implementations§
impl Freeze for ModifyTransitGatewayPrefixListReferenceRequest
impl RefUnwindSafe for ModifyTransitGatewayPrefixListReferenceRequest
impl Send for ModifyTransitGatewayPrefixListReferenceRequest
impl Sync for ModifyTransitGatewayPrefixListReferenceRequest
impl Unpin for ModifyTransitGatewayPrefixListReferenceRequest
impl UnwindSafe for ModifyTransitGatewayPrefixListReferenceRequest
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