pub struct CreateDevice { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateDevice
.
Creates a new device in a global network. If you specify both a site ID and a location, the location of the site is used for visualization in the Network Manager console.
Implementations§
source§impl CreateDevice
impl CreateDevice
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateDevice, AwsResponseRetryClassifier>, SdkError<CreateDeviceError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateDevice, AwsResponseRetryClassifier>, SdkError<CreateDeviceError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateDeviceOutput, SdkError<CreateDeviceError>>
pub async fn send(
self
) -> Result<CreateDeviceOutput, SdkError<CreateDeviceError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
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.
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 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 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 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 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 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 set_location(self, input: Option<Location>) -> Self
pub fn set_location(self, input: Option<Location>) -> Self
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.
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.
Trait Implementations§
source§impl Clone for CreateDevice
impl Clone for CreateDevice
source§fn clone(&self) -> CreateDevice
fn clone(&self) -> CreateDevice
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more