Struct aws_sdk_outposts::types::RackPhysicalProperties
source · #[non_exhaustive]pub struct RackPhysicalProperties {
pub power_draw_kva: Option<PowerDrawKva>,
pub power_phase: Option<PowerPhase>,
pub power_connector: Option<PowerConnector>,
pub power_feed_drop: Option<PowerFeedDrop>,
pub uplink_gbps: Option<UplinkGbps>,
pub uplink_count: Option<UplinkCount>,
pub fiber_optic_cable_type: Option<FiberOpticCableType>,
pub optical_standard: Option<OpticalStandard>,
pub maximum_supported_weight_lbs: Option<MaximumSupportedWeightLbs>,
}
Expand description
Information about the physical and logistical details for racks at sites. For more information about hardware requirements for racks, see Network readiness checklist in the Amazon Web Services Outposts User Guide.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.power_draw_kva: Option<PowerDrawKva>
The power draw available at the hardware placement position for the rack.
power_phase: Option<PowerPhase>
The power option that you can provide for hardware.
power_connector: Option<PowerConnector>
The power connector for the hardware.
power_feed_drop: Option<PowerFeedDrop>
The position of the power feed.
uplink_gbps: Option<UplinkGbps>
The uplink speed the rack supports for the connection to the Region.
uplink_count: Option<UplinkCount>
The number of uplinks each Outpost network device.
fiber_optic_cable_type: Option<FiberOpticCableType>
The type of fiber used to attach the Outpost to the network.
optical_standard: Option<OpticalStandard>
The type of optical standard used to attach the Outpost to the network. This field is dependent on uplink speed, fiber type, and distance to the upstream device. For more information about networking requirements for racks, see Network in the Amazon Web Services Outposts User Guide.
maximum_supported_weight_lbs: Option<MaximumSupportedWeightLbs>
The maximum rack weight that this site can support. NO_LIMIT
is over 2000 lbs (907 kg).
Implementations§
source§impl RackPhysicalProperties
impl RackPhysicalProperties
sourcepub fn power_draw_kva(&self) -> Option<&PowerDrawKva>
pub fn power_draw_kva(&self) -> Option<&PowerDrawKva>
The power draw available at the hardware placement position for the rack.
sourcepub fn power_phase(&self) -> Option<&PowerPhase>
pub fn power_phase(&self) -> Option<&PowerPhase>
The power option that you can provide for hardware.
sourcepub fn power_connector(&self) -> Option<&PowerConnector>
pub fn power_connector(&self) -> Option<&PowerConnector>
The power connector for the hardware.
sourcepub fn power_feed_drop(&self) -> Option<&PowerFeedDrop>
pub fn power_feed_drop(&self) -> Option<&PowerFeedDrop>
The position of the power feed.
sourcepub fn uplink_gbps(&self) -> Option<&UplinkGbps>
pub fn uplink_gbps(&self) -> Option<&UplinkGbps>
The uplink speed the rack supports for the connection to the Region.
sourcepub fn uplink_count(&self) -> Option<&UplinkCount>
pub fn uplink_count(&self) -> Option<&UplinkCount>
The number of uplinks each Outpost network device.
sourcepub fn fiber_optic_cable_type(&self) -> Option<&FiberOpticCableType>
pub fn fiber_optic_cable_type(&self) -> Option<&FiberOpticCableType>
The type of fiber used to attach the Outpost to the network.
sourcepub fn optical_standard(&self) -> Option<&OpticalStandard>
pub fn optical_standard(&self) -> Option<&OpticalStandard>
The type of optical standard used to attach the Outpost to the network. This field is dependent on uplink speed, fiber type, and distance to the upstream device. For more information about networking requirements for racks, see Network in the Amazon Web Services Outposts User Guide.
sourcepub fn maximum_supported_weight_lbs(&self) -> Option<&MaximumSupportedWeightLbs>
pub fn maximum_supported_weight_lbs(&self) -> Option<&MaximumSupportedWeightLbs>
The maximum rack weight that this site can support. NO_LIMIT
is over 2000 lbs (907 kg).
source§impl RackPhysicalProperties
impl RackPhysicalProperties
sourcepub fn builder() -> RackPhysicalPropertiesBuilder
pub fn builder() -> RackPhysicalPropertiesBuilder
Creates a new builder-style object to manufacture RackPhysicalProperties
.
Trait Implementations§
source§impl Clone for RackPhysicalProperties
impl Clone for RackPhysicalProperties
source§fn clone(&self) -> RackPhysicalProperties
fn clone(&self) -> RackPhysicalProperties
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RackPhysicalProperties
impl Debug for RackPhysicalProperties
source§impl PartialEq for RackPhysicalProperties
impl PartialEq for RackPhysicalProperties
impl StructuralPartialEq for RackPhysicalProperties
Auto Trait Implementations§
impl Freeze for RackPhysicalProperties
impl RefUnwindSafe for RackPhysicalProperties
impl Send for RackPhysicalProperties
impl Sync for RackPhysicalProperties
impl Unpin for RackPhysicalProperties
impl UnwindSafe for RackPhysicalProperties
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more