pub struct VpcBlockPublicAccessExclusionArgs {
pub internet_gateway_exclusion_mode: Output<String>,
pub subnet_id: Output<Option<String>>,
pub tags: Output<Option<HashMap<String, String>>>,
pub timeouts: Output<Option<VpcBlockPublicAccessExclusionTimeouts>>,
pub vpc_id: Output<Option<String>>,
}
Fields§
§internet_gateway_exclusion_mode: Output<String>
Mode of exclusion from Block Public Access. The allowed values are allow-egress
and allow-bidirectional
.
The following arguments are optional:
subnet_id: Output<Option<String>>
Id of the subnet to which this exclusion applies. Either this or the vpc_id needs to be provided.
A map of tags to assign to the exclusion. If configured with a provider default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
timeouts: Output<Option<VpcBlockPublicAccessExclusionTimeouts>>
§vpc_id: Output<Option<String>>
Id of the VPC to which this exclusion applies. Either this or the subnet_id needs to be provided.
Implementations§
source§impl VpcBlockPublicAccessExclusionArgs
impl VpcBlockPublicAccessExclusionArgs
sourcepub fn builder() -> VpcBlockPublicAccessExclusionArgsBuilder
pub fn builder() -> VpcBlockPublicAccessExclusionArgsBuilder
Create an instance of VpcBlockPublicAccessExclusionArgs
using the builder syntax
Trait Implementations§
source§impl Clone for VpcBlockPublicAccessExclusionArgs
impl Clone for VpcBlockPublicAccessExclusionArgs
source§fn clone(&self) -> VpcBlockPublicAccessExclusionArgs
fn clone(&self) -> VpcBlockPublicAccessExclusionArgs
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 VpcBlockPublicAccessExclusionArgs
impl RefUnwindSafe for VpcBlockPublicAccessExclusionArgs
impl Send for VpcBlockPublicAccessExclusionArgs
impl Sync for VpcBlockPublicAccessExclusionArgs
impl Unpin for VpcBlockPublicAccessExclusionArgs
impl UnwindSafe for VpcBlockPublicAccessExclusionArgs
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
)