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
source§fn eq(&self, other: &CreateSiteInput) -> bool
fn eq(&self, other: &CreateSiteInput) -> bool
self
and other
values to be equal, and is used
by ==
.