pub struct GetAvailabilityZonesArgs {
pub all_availability_zones: Output<Option<bool>>,
pub exclude_names: Output<Option<Vec<String>>>,
pub exclude_zone_ids: Output<Option<Vec<String>>>,
pub filters: Output<Option<Vec<GetAvailabilityZonesFilter>>>,
pub state: Output<Option<String>>,
}
Fields§
§all_availability_zones: Output<Option<bool>>
Set to true
to include all Availability Zones and Local Zones regardless of your opt in status.
exclude_names: Output<Option<Vec<String>>>
List of Availability Zone names to exclude.
exclude_zone_ids: Output<Option<Vec<String>>>
List of Availability Zone IDs to exclude.
filters: Output<Option<Vec<GetAvailabilityZonesFilter>>>
Configuration block(s) for filtering. Detailed below.
state: Output<Option<String>>
Allows to filter list of Availability Zones based on their
current state. Can be either "available"
, "information"
, "impaired"
or
"unavailable"
. By default the list includes a complete set of Availability Zones
to which the underlying AWS account has access, regardless of their state.
Implementations§
source§impl GetAvailabilityZonesArgs
impl GetAvailabilityZonesArgs
sourcepub fn builder() -> GetAvailabilityZonesArgsBuilder
pub fn builder() -> GetAvailabilityZonesArgsBuilder
Create an instance of GetAvailabilityZonesArgs
using the builder syntax
Trait Implementations§
source§impl Clone for GetAvailabilityZonesArgs
impl Clone for GetAvailabilityZonesArgs
source§fn clone(&self) -> GetAvailabilityZonesArgs
fn clone(&self) -> GetAvailabilityZonesArgs
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 GetAvailabilityZonesArgs
impl RefUnwindSafe for GetAvailabilityZonesArgs
impl Send for GetAvailabilityZonesArgs
impl Sync for GetAvailabilityZonesArgs
impl Unpin for GetAvailabilityZonesArgs
impl UnwindSafe for GetAvailabilityZonesArgs
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
)