Struct aws_sdk_storagegateway::operation::describe_upload_buffer::DescribeUploadBufferOutput
source · #[non_exhaustive]pub struct DescribeUploadBufferOutput { /* private fields */ }Implementations§
source§impl DescribeUploadBufferOutput
impl DescribeUploadBufferOutput
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) -> Option<&[String]>
pub fn disk_ids(&self) -> Option<&[String]>
An array of the gateway's local disk IDs that are configured as working storage. Each local disk ID is specified as a string (minimum length of 1 and maximum length of 300). If no local disks are configured as working storage, then the DiskIds array is empty.
sourcepub fn upload_buffer_used_in_bytes(&self) -> i64
pub fn upload_buffer_used_in_bytes(&self) -> i64
The total number of bytes being used in the gateway's upload buffer.
sourcepub fn upload_buffer_allocated_in_bytes(&self) -> i64
pub fn upload_buffer_allocated_in_bytes(&self) -> i64
The total number of bytes allocated in the gateway's as upload buffer.
source§impl DescribeUploadBufferOutput
impl DescribeUploadBufferOutput
sourcepub fn builder() -> DescribeUploadBufferOutputBuilder
pub fn builder() -> DescribeUploadBufferOutputBuilder
Creates a new builder-style object to manufacture DescribeUploadBufferOutput.
Trait Implementations§
source§impl Clone for DescribeUploadBufferOutput
impl Clone for DescribeUploadBufferOutput
source§fn clone(&self) -> DescribeUploadBufferOutput
fn clone(&self) -> DescribeUploadBufferOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DescribeUploadBufferOutput
impl Debug for DescribeUploadBufferOutput
source§impl PartialEq<DescribeUploadBufferOutput> for DescribeUploadBufferOutput
impl PartialEq<DescribeUploadBufferOutput> for DescribeUploadBufferOutput
source§fn eq(&self, other: &DescribeUploadBufferOutput) -> bool
fn eq(&self, other: &DescribeUploadBufferOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeUploadBufferOutput
impl RequestId for DescribeUploadBufferOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for DescribeUploadBufferOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeUploadBufferOutput
impl Send for DescribeUploadBufferOutput
impl Sync for DescribeUploadBufferOutput
impl Unpin for DescribeUploadBufferOutput
impl UnwindSafe for DescribeUploadBufferOutput
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
Mutably borrows from an owned value. Read more