Struct aws_sdk_datasync::operation::describe_location_object_storage::DescribeLocationObjectStorageOutput
source · #[non_exhaustive]pub struct DescribeLocationObjectStorageOutput {
pub location_arn: Option<String>,
pub location_uri: Option<String>,
pub access_key: Option<String>,
pub server_port: Option<i32>,
pub server_protocol: Option<ObjectStorageServerProtocol>,
pub agent_arns: Option<Vec<String>>,
pub creation_time: Option<DateTime>,
pub server_certificate: Option<Blob>,
/* private fields */
}
Expand description
DescribeLocationObjectStorageResponse
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.location_arn: Option<String>
The ARN of the object storage system location.
location_uri: Option<String>
The URL of the object storage system location.
access_key: Option<String>
The access key (for example, a user name) required to authenticate with the object storage system.
server_port: Option<i32>
The port that your object storage server accepts inbound network traffic on (for example, port 443).
server_protocol: Option<ObjectStorageServerProtocol>
The protocol that your object storage system uses to communicate.
agent_arns: Option<Vec<String>>
The ARNs of the DataSync agents that can securely connect with your location.
creation_time: Option<DateTime>
The time that the location was created.
server_certificate: Option<Blob>
The self-signed certificate that DataSync uses to securely authenticate with your object storage system.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeLocationObjectStorageOutput
impl PartialEq for DescribeLocationObjectStorageOutput
source§fn eq(&self, other: &DescribeLocationObjectStorageOutput) -> bool
fn eq(&self, other: &DescribeLocationObjectStorageOutput) -> bool
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>
None
if the service could not be reached.