#[non_exhaustive]pub struct AddUploadBufferInput {
pub gateway_arn: Option<String>,
pub disk_ids: Option<Vec<String>>,
}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.gateway_arn: Option<String>The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and Amazon Web Services Region.
disk_ids: Option<Vec<String>>An array of strings that identify disks that are to be configured as working storage. Each string has a minimum length of 1 and maximum length of 300. You can get the disk IDs from the ListLocalDisks API.
Implementations§
source§impl AddUploadBufferInput
impl AddUploadBufferInput
sourcepub fn gateway_arn(&self) -> Option<&str>
pub fn gateway_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and Amazon Web Services Region.
sourcepub fn disk_ids(&self) -> &[String]
pub fn disk_ids(&self) -> &[String]
An array of strings that identify disks that are to be configured as working storage. Each string has a minimum length of 1 and maximum length of 300. You can get the disk IDs from the ListLocalDisks API.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .disk_ids.is_none().
source§impl AddUploadBufferInput
impl AddUploadBufferInput
sourcepub fn builder() -> AddUploadBufferInputBuilder
pub fn builder() -> AddUploadBufferInputBuilder
Creates a new builder-style object to manufacture AddUploadBufferInput.
Trait Implementations§
source§impl Clone for AddUploadBufferInput
impl Clone for AddUploadBufferInput
source§fn clone(&self) -> AddUploadBufferInput
fn clone(&self) -> AddUploadBufferInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AddUploadBufferInput
impl Debug for AddUploadBufferInput
source§impl PartialEq for AddUploadBufferInput
impl PartialEq for AddUploadBufferInput
source§fn eq(&self, other: &AddUploadBufferInput) -> bool
fn eq(&self, other: &AddUploadBufferInput) -> bool
self and other values to be equal, and is used
by ==.