pub struct Subnet {
pub subnet_availability_zone: Option<String>,
pub subnet_identifier: Option<String>,
}
Expand description
Represents the subnet associated with a DAX cluster. This parameter refers to subnets defined in Amazon Virtual Private Cloud (Amazon VPC) and used with DAX.
Fields§
§subnet_availability_zone: Option<String>
The Availability Zone (AZ) for the subnet.
subnet_identifier: Option<String>
The system-assigned identifier for the subnet.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Subnet
impl<'de> Deserialize<'de> for Subnet
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Subnet
Auto Trait Implementations§
impl Freeze for Subnet
impl RefUnwindSafe for Subnet
impl Send for Subnet
impl Sync for Subnet
impl Unpin for Subnet
impl UnwindSafe for Subnet
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