LocationObjectStorageArgs

data class LocationObjectStorageArgs(val accessKey: Output<String>? = null, val agentArns: Output<List<String>>? = null, val bucketName: Output<String>? = null, val secretKey: Output<String>? = null, val serverCertificate: Output<String>? = null, val serverHostname: Output<String>? = null, val serverPort: Output<Int>? = null, val serverProtocol: Output<String>? = null, val subdirectory: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<LocationObjectStorageArgs>

Manages a Object Storage Location within AWS DataSync.

NOTE: The DataSync Agents must be available before creating this resource.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.datasync.LocationObjectStorage;
import com.pulumi.aws.datasync.LocationObjectStorageArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new LocationObjectStorage("example", LocationObjectStorageArgs.builder()
.agentArns(aws_datasync_agent.example().arn())
.serverHostname("example")
.bucketName("example")
.build());
}
}

Import

aws_datasync_location_object_storage can be imported by using the Amazon Resource Name (ARN), e.g.,

$ pulumi import aws:datasync/locationObjectStorage:LocationObjectStorage example arn:aws:datasync:us-east-1:123456789012:location/loc-12345678901234567

Constructors

Link copied to clipboard
constructor(accessKey: Output<String>? = null, agentArns: Output<List<String>>? = null, bucketName: Output<String>? = null, secretKey: Output<String>? = null, serverCertificate: Output<String>? = null, serverHostname: Output<String>? = null, serverPort: Output<Int>? = null, serverProtocol: Output<String>? = null, subdirectory: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val accessKey: Output<String>? = null

The access key is used if credentials are required to access the self-managed object storage server. If your object storage requires a user name and password to authenticate, use access_key and secret_key to provide the user name and password, respectively.

Link copied to clipboard
val agentArns: Output<List<String>>? = null

A list of DataSync Agent ARNs with which this location will be associated.

Link copied to clipboard
val bucketName: Output<String>? = null

The bucket on the self-managed object storage server that is used to read data from.

Link copied to clipboard
val secretKey: Output<String>? = null

The secret key is used if credentials are required to access the self-managed object storage server. If your object storage requires a user name and password to authenticate, use access_key and secret_key to provide the user name and password, respectively.

Link copied to clipboard
val serverCertificate: Output<String>? = null

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).

Link copied to clipboard
val serverHostname: Output<String>? = null

The name of the self-managed object storage server. This value is the IP address or Domain Name Service (DNS) name of the object storage server. An agent uses this host name to mount the object storage server in a network.

Link copied to clipboard
val serverPort: Output<Int>? = null

The port that your self-managed object storage server accepts inbound network traffic on. The server port is set by default to TCP 80 (HTTP) or TCP 443 (HTTPS). You can specify a custom port if your self-managed object storage server requires one.

Link copied to clipboard
val serverProtocol: Output<String>? = null

The protocol that the object storage server uses to communicate. Valid values are HTTP or HTTPS.

Link copied to clipboard
val subdirectory: Output<String>? = null

A subdirectory in the HDFS cluster. This subdirectory is used to read data from or write data to the HDFS cluster. If the subdirectory isn't specified, it will default to /.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Functions

Link copied to clipboard
open override fun toJava(): LocationObjectStorageArgs