LocationSmb

Manages a SMB 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.LocationSmb;
import com.pulumi.aws.datasync.LocationSmbArgs;
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 LocationSmb("example", LocationSmbArgs.builder()
.serverHostname("smb.example.com")
.subdirectory("/exported/path")
.user("Guest")
.password("ANotGreatPassword")
.agentArns(aws_datasync_agent.example().arn())
.build());
}
}

Import

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

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

Properties

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

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

Link copied to clipboard
val arn: Output<String>

Amazon Resource Name (ARN) of the DataSync Location.

Link copied to clipboard
val domain: Output<String>

The name of the Windows domain the SMB server belongs to.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

Configuration block containing mount options used by DataSync to access the SMB Server. Can be AUTOMATIC, SMB2, or SMB3.

Link copied to clipboard
val password: Output<String>

The password of the user who can mount the share and has file permissions in the SMB.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val serverHostname: Output<String>

Specifies the IP address or DNS name of the SMB server. The DataSync Agent(s) use this to mount the SMB share.

Link copied to clipboard
val subdirectory: Output<String>

Subdirectory to perform actions as source or destination. Should be exported by the NFS server.

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

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.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val uri: Output<String>
Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val user: Output<String>

The user who can mount the share and has file and folder permissions in the SMB share.