pub struct GetRegionsResult {
pub all_regions: Output<Option<bool>>,
pub filters: Output<Option<Vec<GetRegionsFilter>>>,
pub id: Output<String>,
pub names: Output<Vec<String>>,
}
Fields§
§all_regions: Output<Option<bool>>
§filters: Output<Option<Vec<GetRegionsFilter>>>
§id: Output<String>
Identifier of the current partition (e.g., aws
in AWS Commercial, aws-cn
in AWS China).
names: Output<Vec<String>>
Names of regions that meets the criteria.
Auto Trait Implementations§
impl Freeze for GetRegionsResult
impl RefUnwindSafe for GetRegionsResult
impl Send for GetRegionsResult
impl Sync for GetRegionsResult
impl Unpin for GetRegionsResult
impl UnwindSafe for GetRegionsResult
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