Struct aws_sdk_outposts::operation::create_site::CreateSiteInput
source · #[non_exhaustive]pub struct CreateSiteInput {
pub name: Option<String>,
pub description: Option<String>,
pub notes: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub operating_address: Option<Address>,
pub shipping_address: Option<Address>,
pub rack_physical_properties: Option<RackPhysicalProperties>,
}
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.name: Option<String>
The name of the site.
description: Option<String>
The description of the site.
notes: Option<String>
Additional information that you provide about site access requirements, electrician scheduling, personal protective equipment, or regulation of equipment materials that could affect your installation process.
The tags to apply to a site.
operating_address: Option<Address>
The location to install and power on the hardware. This address might be different from the shipping address.
shipping_address: Option<Address>
The location to ship the hardware. This address might be different from the operating address.
rack_physical_properties: Option<RackPhysicalProperties>
Information about the physical and logistical details for the rack at this site. For more information about hardware requirements for racks, see Network readiness checklist in the Amazon Web Services Outposts User Guide.
Implementations§
source§impl CreateSiteInput
impl CreateSiteInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the site.
sourcepub fn notes(&self) -> Option<&str>
pub fn notes(&self) -> Option<&str>
Additional information that you provide about site access requirements, electrician scheduling, personal protective equipment, or regulation of equipment materials that could affect your installation process.
The tags to apply to a site.
sourcepub fn operating_address(&self) -> Option<&Address>
pub fn operating_address(&self) -> Option<&Address>
The location to install and power on the hardware. This address might be different from the shipping address.
sourcepub fn shipping_address(&self) -> Option<&Address>
pub fn shipping_address(&self) -> Option<&Address>
The location to ship the hardware. This address might be different from the operating address.
sourcepub fn rack_physical_properties(&self) -> Option<&RackPhysicalProperties>
pub fn rack_physical_properties(&self) -> Option<&RackPhysicalProperties>
Information about the physical and logistical details for the rack at this site. For more information about hardware requirements for racks, see Network readiness checklist in the Amazon Web Services Outposts User Guide.
source§impl CreateSiteInput
impl CreateSiteInput
sourcepub fn builder() -> CreateSiteInputBuilder
pub fn builder() -> CreateSiteInputBuilder
Creates a new builder-style object to manufacture CreateSiteInput
.
Trait Implementations§
source§impl Clone for CreateSiteInput
impl Clone for CreateSiteInput
source§fn clone(&self) -> CreateSiteInput
fn clone(&self) -> CreateSiteInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateSiteInput
impl Debug for CreateSiteInput
source§impl PartialEq for CreateSiteInput
impl PartialEq for CreateSiteInput
impl StructuralPartialEq for CreateSiteInput
Auto Trait Implementations§
impl Freeze for CreateSiteInput
impl RefUnwindSafe for CreateSiteInput
impl Send for CreateSiteInput
impl Sync for CreateSiteInput
impl Unpin for CreateSiteInput
impl UnwindSafe for CreateSiteInput
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