pub struct CreateLocationObjectStorage { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateLocationObjectStorage
.
Creates an endpoint for an object storage system that DataSync can access for a transfer. For more information, see Creating a location for object storage.
Implementations§
source§impl CreateLocationObjectStorage
impl CreateLocationObjectStorage
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateLocationObjectStorage, AwsResponseRetryClassifier>, SdkError<CreateLocationObjectStorageError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateLocationObjectStorage, AwsResponseRetryClassifier>, SdkError<CreateLocationObjectStorageError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateLocationObjectStorageOutput, SdkError<CreateLocationObjectStorageError>>
pub async fn send(
self
) -> Result<CreateLocationObjectStorageOutput, SdkError<CreateLocationObjectStorageError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn server_hostname(self, input: impl Into<String>) -> Self
pub fn server_hostname(self, input: impl Into<String>) -> Self
Specifies the domain name or IP address of the object storage server. A DataSync agent uses this hostname to mount the object storage server in a network.
sourcepub fn set_server_hostname(self, input: Option<String>) -> Self
pub fn set_server_hostname(self, input: Option<String>) -> Self
Specifies the domain name or IP address of the object storage server. A DataSync agent uses this hostname to mount the object storage server in a network.
sourcepub fn server_port(self, input: i32) -> Self
pub fn server_port(self, input: i32) -> Self
Specifies the port that your object storage server accepts inbound network traffic on (for example, port 443).
sourcepub fn set_server_port(self, input: Option<i32>) -> Self
pub fn set_server_port(self, input: Option<i32>) -> Self
Specifies the port that your object storage server accepts inbound network traffic on (for example, port 443).
sourcepub fn server_protocol(self, input: ObjectStorageServerProtocol) -> Self
pub fn server_protocol(self, input: ObjectStorageServerProtocol) -> Self
Specifies the protocol that your object storage server uses to communicate.
sourcepub fn set_server_protocol(
self,
input: Option<ObjectStorageServerProtocol>
) -> Self
pub fn set_server_protocol(
self,
input: Option<ObjectStorageServerProtocol>
) -> Self
Specifies the protocol that your object storage server uses to communicate.
sourcepub fn subdirectory(self, input: impl Into<String>) -> Self
pub fn subdirectory(self, input: impl Into<String>) -> Self
Specifies the object prefix for your object storage server. If this is a source location, DataSync only copies objects with this prefix. If this is a destination location, DataSync writes all objects with this prefix.
sourcepub fn set_subdirectory(self, input: Option<String>) -> Self
pub fn set_subdirectory(self, input: Option<String>) -> Self
Specifies the object prefix for your object storage server. If this is a source location, DataSync only copies objects with this prefix. If this is a destination location, DataSync writes all objects with this prefix.
sourcepub fn bucket_name(self, input: impl Into<String>) -> Self
pub fn bucket_name(self, input: impl Into<String>) -> Self
Specifies the name of the object storage bucket involved in the transfer.
sourcepub fn set_bucket_name(self, input: Option<String>) -> Self
pub fn set_bucket_name(self, input: Option<String>) -> Self
Specifies the name of the object storage bucket involved in the transfer.
sourcepub fn access_key(self, input: impl Into<String>) -> Self
pub fn access_key(self, input: impl Into<String>) -> Self
Specifies the access key (for example, a user name) if credentials are required to authenticate with the object storage server.
sourcepub fn set_access_key(self, input: Option<String>) -> Self
pub fn set_access_key(self, input: Option<String>) -> Self
Specifies the access key (for example, a user name) if credentials are required to authenticate with the object storage server.
sourcepub fn secret_key(self, input: impl Into<String>) -> Self
pub fn secret_key(self, input: impl Into<String>) -> Self
Specifies the secret key (for example, a password) if credentials are required to authenticate with the object storage server.
sourcepub fn set_secret_key(self, input: Option<String>) -> Self
pub fn set_secret_key(self, input: Option<String>) -> Self
Specifies the secret key (for example, a password) if credentials are required to authenticate with the object storage server.
sourcepub fn agent_arns(self, input: impl Into<String>) -> Self
pub fn agent_arns(self, input: impl Into<String>) -> Self
Appends an item to AgentArns
.
To override the contents of this collection use set_agent_arns
.
Specifies the Amazon Resource Names (ARNs) of the DataSync agents that can securely connect with your location.
sourcepub fn set_agent_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_agent_arns(self, input: Option<Vec<String>>) -> Self
Specifies the Amazon Resource Names (ARNs) of the DataSync agents that can securely connect with your location.
Appends an item to Tags
.
To override the contents of this collection use set_tags
.
Specifies the key-value pair that represents a tag that you want to add to the resource. Tags can help you manage, filter, and search for your resources. We recommend creating a name tag for your location.
Specifies the key-value pair that represents a tag that you want to add to the resource. Tags can help you manage, filter, and search for your resources. We recommend creating a name tag for your location.
sourcepub fn server_certificate(self, input: Blob) -> Self
pub fn server_certificate(self, input: Blob) -> Self
Specifies a certificate to authenticate with an object storage system that uses a private or self-signed certificate authority (CA). You must specify a Base64-encoded .pem
file (for example, file:///home/user/.ssh/storage_sys_certificate.pem
). The certificate can be up to 32768 bytes (before Base64 encoding).
To use this parameter, configure ServerProtocol
to HTTPS
.
sourcepub fn set_server_certificate(self, input: Option<Blob>) -> Self
pub fn set_server_certificate(self, input: Option<Blob>) -> Self
Specifies a certificate to authenticate with an object storage system that uses a private or self-signed certificate authority (CA). You must specify a Base64-encoded .pem
file (for example, file:///home/user/.ssh/storage_sys_certificate.pem
). The certificate can be up to 32768 bytes (before Base64 encoding).
To use this parameter, configure ServerProtocol
to HTTPS
.
Trait Implementations§
source§impl Clone for CreateLocationObjectStorage
impl Clone for CreateLocationObjectStorage
source§fn clone(&self) -> CreateLocationObjectStorage
fn clone(&self) -> CreateLocationObjectStorage
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more