pub struct RouteTableArgs {
pub propagating_vgws: Output<Option<Vec<String>>>,
pub routes: Output<Option<Vec<RouteTableRoute>>>,
pub tags: Output<Option<HashMap<String, String>>>,
pub vpc_id: Output<String>,
}
Fields§
§propagating_vgws: Output<Option<Vec<String>>>
A list of virtual gateways for propagation.
routes: Output<Option<Vec<RouteTableRoute>>>
A list of route objects. Their keys are documented below. This means that omitting this argument is interpreted as ignoring any existing routes. To remove all managed routes an empty list should be specified. See the example above.
A map of tags to assign to the resource. If configured with a provider default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
vpc_id: Output<String>
The VPC ID.
Implementations§
source§impl RouteTableArgs
impl RouteTableArgs
sourcepub fn builder() -> RouteTableArgsBuilder
pub fn builder() -> RouteTableArgsBuilder
Create an instance of RouteTableArgs
using the builder syntax
Trait Implementations§
source§impl Clone for RouteTableArgs
impl Clone for RouteTableArgs
source§fn clone(&self) -> RouteTableArgs
fn clone(&self) -> RouteTableArgs
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 moreAuto Trait Implementations§
impl Freeze for RouteTableArgs
impl RefUnwindSafe for RouteTableArgs
impl Send for RouteTableArgs
impl Sync for RouteTableArgs
impl Unpin for RouteTableArgs
impl UnwindSafe for RouteTableArgs
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)