#[non_exhaustive]pub struct CreateDeviceInputBuilder { /* private fields */ }
Expand description
A builder for CreateDeviceInput
.
Implementations§
source§impl CreateDeviceInputBuilder
impl CreateDeviceInputBuilder
sourcepub fn global_network_id(self, input: impl Into<String>) -> Self
pub fn global_network_id(self, input: impl Into<String>) -> Self
The ID of the global network.
This field is required.sourcepub fn set_global_network_id(self, input: Option<String>) -> Self
pub fn set_global_network_id(self, input: Option<String>) -> Self
The ID of the global network.
sourcepub fn get_global_network_id(&self) -> &Option<String>
pub fn get_global_network_id(&self) -> &Option<String>
The ID of the global network.
sourcepub fn aws_location(self, input: AwsLocation) -> Self
pub fn aws_location(self, input: AwsLocation) -> Self
The Amazon Web Services location of the device, if applicable. For an on-premises device, you can omit this parameter.
sourcepub fn set_aws_location(self, input: Option<AwsLocation>) -> Self
pub fn set_aws_location(self, input: Option<AwsLocation>) -> Self
The Amazon Web Services location of the device, if applicable. For an on-premises device, you can omit this parameter.
sourcepub fn get_aws_location(&self) -> &Option<AwsLocation>
pub fn get_aws_location(&self) -> &Option<AwsLocation>
The Amazon Web Services location of the device, if applicable. For an on-premises device, you can omit this parameter.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the device.
Constraints: Maximum length of 256 characters.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the device.
Constraints: Maximum length of 256 characters.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the device.
Constraints: Maximum length of 256 characters.
sourcepub fn vendor(self, input: impl Into<String>) -> Self
pub fn vendor(self, input: impl Into<String>) -> Self
The vendor of the device.
Constraints: Maximum length of 128 characters.
sourcepub fn set_vendor(self, input: Option<String>) -> Self
pub fn set_vendor(self, input: Option<String>) -> Self
The vendor of the device.
Constraints: Maximum length of 128 characters.
sourcepub fn get_vendor(&self) -> &Option<String>
pub fn get_vendor(&self) -> &Option<String>
The vendor of the device.
Constraints: Maximum length of 128 characters.
sourcepub fn model(self, input: impl Into<String>) -> Self
pub fn model(self, input: impl Into<String>) -> Self
The model of the device.
Constraints: Maximum length of 128 characters.
sourcepub fn set_model(self, input: Option<String>) -> Self
pub fn set_model(self, input: Option<String>) -> Self
The model of the device.
Constraints: Maximum length of 128 characters.
sourcepub fn get_model(&self) -> &Option<String>
pub fn get_model(&self) -> &Option<String>
The model of the device.
Constraints: Maximum length of 128 characters.
sourcepub fn serial_number(self, input: impl Into<String>) -> Self
pub fn serial_number(self, input: impl Into<String>) -> Self
The serial number of the device.
Constraints: Maximum length of 128 characters.
sourcepub fn set_serial_number(self, input: Option<String>) -> Self
pub fn set_serial_number(self, input: Option<String>) -> Self
The serial number of the device.
Constraints: Maximum length of 128 characters.
sourcepub fn get_serial_number(&self) -> &Option<String>
pub fn get_serial_number(&self) -> &Option<String>
The serial number of the device.
Constraints: Maximum length of 128 characters.
sourcepub fn set_location(self, input: Option<Location>) -> Self
pub fn set_location(self, input: Option<Location>) -> Self
The location of the device.
sourcepub fn get_location(&self) -> &Option<Location>
pub fn get_location(&self) -> &Option<Location>
The location of the device.
sourcepub fn set_site_id(self, input: Option<String>) -> Self
pub fn set_site_id(self, input: Option<String>) -> Self
The ID of the site.
sourcepub fn get_site_id(&self) -> &Option<String>
pub fn get_site_id(&self) -> &Option<String>
The ID of the site.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
The tags to apply to the resource during creation.
The tags to apply to the resource during creation.
The tags to apply to the resource during creation.
sourcepub fn build(self) -> Result<CreateDeviceInput, BuildError>
pub fn build(self) -> Result<CreateDeviceInput, BuildError>
Consumes the builder and constructs a CreateDeviceInput
.
source§impl CreateDeviceInputBuilder
impl CreateDeviceInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateDeviceOutput, SdkError<CreateDeviceError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateDeviceOutput, SdkError<CreateDeviceError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateDeviceInputBuilder
impl Clone for CreateDeviceInputBuilder
source§fn clone(&self) -> CreateDeviceInputBuilder
fn clone(&self) -> CreateDeviceInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateDeviceInputBuilder
impl Debug for CreateDeviceInputBuilder
source§impl Default for CreateDeviceInputBuilder
impl Default for CreateDeviceInputBuilder
source§fn default() -> CreateDeviceInputBuilder
fn default() -> CreateDeviceInputBuilder
source§impl PartialEq for CreateDeviceInputBuilder
impl PartialEq for CreateDeviceInputBuilder
source§fn eq(&self, other: &CreateDeviceInputBuilder) -> bool
fn eq(&self, other: &CreateDeviceInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.