pub struct NetworkAclArgs {
pub egress: Output<Option<Vec<NetworkAclEgress>>>,
pub ingress: Output<Option<Vec<NetworkAclIngress>>>,
pub subnet_ids: Output<Option<Vec<String>>>,
pub tags: Output<Option<HashMap<String, String>>>,
pub vpc_id: Output<String>,
}
Fields§
§egress: Output<Option<Vec<NetworkAclEgress>>>
Specifies an egress rule. Parameters defined below.
ingress: Output<Option<Vec<NetworkAclIngress>>>
Specifies an ingress rule. Parameters defined below.
subnet_ids: Output<Option<Vec<String>>>
A list of Subnet IDs to apply the ACL to
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 ID of the associated VPC.
Implementations§
source§impl NetworkAclArgs
impl NetworkAclArgs
sourcepub fn builder() -> NetworkAclArgsBuilder
pub fn builder() -> NetworkAclArgsBuilder
Create an instance of NetworkAclArgs
using the builder syntax
Trait Implementations§
source§impl Clone for NetworkAclArgs
impl Clone for NetworkAclArgs
source§fn clone(&self) -> NetworkAclArgs
fn clone(&self) -> NetworkAclArgs
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 NetworkAclArgs
impl RefUnwindSafe for NetworkAclArgs
impl Send for NetworkAclArgs
impl Sync for NetworkAclArgs
impl Unpin for NetworkAclArgs
impl UnwindSafe for NetworkAclArgs
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
)