#[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 ==.impl StructuralPartialEq for AddUploadBufferInput
Auto Trait Implementations§
impl Freeze for AddUploadBufferInput
impl RefUnwindSafe for AddUploadBufferInput
impl Send for AddUploadBufferInput
impl Sync for AddUploadBufferInput
impl Unpin for AddUploadBufferInput
impl UnwindSafe for AddUploadBufferInput
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> 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