Location Smb Args
data class LocationSmbArgs(val agentArns: Output<List<String>>? = null, val domain: Output<String>? = null, val mountOptions: Output<LocationSmbMountOptionsArgs>? = null, val password: Output<String>? = null, val serverHostname: Output<String>? = null, val subdirectory: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val user: Output<String>? = null) : ConvertibleToJava<LocationSmbArgs>
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());
}
}
Content copied to clipboard
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
Content copied to clipboard
Constructors
Link copied to clipboard
fun LocationSmbArgs(agentArns: Output<List<String>>? = null, domain: Output<String>? = null, mountOptions: Output<LocationSmbMountOptionsArgs>? = null, password: Output<String>? = null, serverHostname: Output<String>? = null, subdirectory: Output<String>? = null, tags: Output<Map<String, String>>? = null, user: Output<String>? = null)