Struct aws_sdk_datasync::operation::describe_location_object_storage::DescribeLocationObjectStorageOutput
source · #[non_exhaustive]pub struct DescribeLocationObjectStorageOutput { /* private fields */ }
Expand description
DescribeLocationObjectStorageResponse
Implementations§
source§impl DescribeLocationObjectStorageOutput
impl DescribeLocationObjectStorageOutput
sourcepub fn location_arn(&self) -> Option<&str>
pub fn location_arn(&self) -> Option<&str>
The ARN of the object storage system location.
sourcepub fn location_uri(&self) -> Option<&str>
pub fn location_uri(&self) -> Option<&str>
The URL of the object storage system location.
sourcepub fn access_key(&self) -> Option<&str>
pub fn access_key(&self) -> Option<&str>
The access key (for example, a user name) required to authenticate with the object storage system.
sourcepub fn server_port(&self) -> Option<i32>
pub fn server_port(&self) -> Option<i32>
The port that your object storage server accepts inbound network traffic on (for example, port 443).
sourcepub fn server_protocol(&self) -> Option<&ObjectStorageServerProtocol>
pub fn server_protocol(&self) -> Option<&ObjectStorageServerProtocol>
The protocol that your object storage system uses to communicate.
sourcepub fn agent_arns(&self) -> Option<&[String]>
pub fn agent_arns(&self) -> Option<&[String]>
The ARNs of the DataSync agents that can securely connect with your location.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time that the location was created.
sourcepub fn server_certificate(&self) -> Option<&Blob>
pub fn server_certificate(&self) -> Option<&Blob>
The self-signed certificate that DataSync uses to securely authenticate with your object storage system.
source§impl DescribeLocationObjectStorageOutput
impl DescribeLocationObjectStorageOutput
sourcepub fn builder() -> DescribeLocationObjectStorageOutputBuilder
pub fn builder() -> DescribeLocationObjectStorageOutputBuilder
Creates a new builder-style object to manufacture DescribeLocationObjectStorageOutput
.
Trait Implementations§
source§impl Clone for DescribeLocationObjectStorageOutput
impl Clone for DescribeLocationObjectStorageOutput
source§fn clone(&self) -> DescribeLocationObjectStorageOutput
fn clone(&self) -> DescribeLocationObjectStorageOutput
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 PartialEq<DescribeLocationObjectStorageOutput> for DescribeLocationObjectStorageOutput
impl PartialEq<DescribeLocationObjectStorageOutput> for DescribeLocationObjectStorageOutput
source§fn eq(&self, other: &DescribeLocationObjectStorageOutput) -> bool
fn eq(&self, other: &DescribeLocationObjectStorageOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeLocationObjectStorageOutput
impl RequestId for DescribeLocationObjectStorageOutput
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 DescribeLocationObjectStorageOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeLocationObjectStorageOutput
impl Send for DescribeLocationObjectStorageOutput
impl Sync for DescribeLocationObjectStorageOutput
impl Unpin for DescribeLocationObjectStorageOutput
impl UnwindSafe for DescribeLocationObjectStorageOutput
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