1. Packages
  2. AWS
  3. API Docs
  4. datasync
  5. LocationAzureBlob
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.datasync.LocationAzureBlob

Explore with Pulumi AI

Manages a Microsoft Azure Blob Storage Location within AWS DataSync.

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

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.datasync.LocationAzureBlob("example", {
    agentArns: [exampleAwsDatasyncAgent.arn],
    authenticationType: "SAS",
    containerUrl: "https://myaccount.blob.core.windows.net/mycontainer",
    sasConfiguration: {
        token: "sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D",
    },
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.datasync.LocationAzureBlob("example",
    agent_arns=[example_aws_datasync_agent["arn"]],
    authentication_type="SAS",
    container_url="https://myaccount.blob.core.windows.net/mycontainer",
    sas_configuration={
        "token": "sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/datasync"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasync.NewLocationAzureBlob(ctx, "example", &datasync.LocationAzureBlobArgs{
			AgentArns: pulumi.StringArray{
				exampleAwsDatasyncAgent.Arn,
			},
			AuthenticationType: pulumi.String("SAS"),
			ContainerUrl:       pulumi.String("https://myaccount.blob.core.windows.net/mycontainer"),
			SasConfiguration: &datasync.LocationAzureBlobSasConfigurationArgs{
				Token: pulumi.String("sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.DataSync.LocationAzureBlob("example", new()
    {
        AgentArns = new[]
        {
            exampleAwsDatasyncAgent.Arn,
        },
        AuthenticationType = "SAS",
        ContainerUrl = "https://myaccount.blob.core.windows.net/mycontainer",
        SasConfiguration = new Aws.DataSync.Inputs.LocationAzureBlobSasConfigurationArgs
        {
            Token = "sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.datasync.LocationAzureBlob;
import com.pulumi.aws.datasync.LocationAzureBlobArgs;
import com.pulumi.aws.datasync.inputs.LocationAzureBlobSasConfigurationArgs;
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 LocationAzureBlob("example", LocationAzureBlobArgs.builder()
            .agentArns(exampleAwsDatasyncAgent.arn())
            .authenticationType("SAS")
            .containerUrl("https://myaccount.blob.core.windows.net/mycontainer")
            .sasConfiguration(LocationAzureBlobSasConfigurationArgs.builder()
                .token("sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D")
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: aws:datasync:LocationAzureBlob
    properties:
      agentArns:
        - ${exampleAwsDatasyncAgent.arn}
      authenticationType: SAS
      containerUrl: https://myaccount.blob.core.windows.net/mycontainer
      sasConfiguration:
        token: sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D
Copy

Create LocationAzureBlob Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new LocationAzureBlob(name: string, args: LocationAzureBlobArgs, opts?: CustomResourceOptions);
@overload
def LocationAzureBlob(resource_name: str,
                      args: LocationAzureBlobArgs,
                      opts: Optional[ResourceOptions] = None)

@overload
def LocationAzureBlob(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      agent_arns: Optional[Sequence[str]] = None,
                      authentication_type: Optional[str] = None,
                      container_url: Optional[str] = None,
                      access_tier: Optional[str] = None,
                      blob_type: Optional[str] = None,
                      sas_configuration: Optional[LocationAzureBlobSasConfigurationArgs] = None,
                      subdirectory: Optional[str] = None,
                      tags: Optional[Mapping[str, str]] = None)
func NewLocationAzureBlob(ctx *Context, name string, args LocationAzureBlobArgs, opts ...ResourceOption) (*LocationAzureBlob, error)
public LocationAzureBlob(string name, LocationAzureBlobArgs args, CustomResourceOptions? opts = null)
public LocationAzureBlob(String name, LocationAzureBlobArgs args)
public LocationAzureBlob(String name, LocationAzureBlobArgs args, CustomResourceOptions options)
type: aws:datasync:LocationAzureBlob
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. LocationAzureBlobArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. LocationAzureBlobArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. LocationAzureBlobArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. LocationAzureBlobArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. LocationAzureBlobArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var locationAzureBlobResource = new Aws.DataSync.LocationAzureBlob("locationAzureBlobResource", new()
{
    AgentArns = new[]
    {
        "string",
    },
    AuthenticationType = "string",
    ContainerUrl = "string",
    AccessTier = "string",
    BlobType = "string",
    SasConfiguration = new Aws.DataSync.Inputs.LocationAzureBlobSasConfigurationArgs
    {
        Token = "string",
    },
    Subdirectory = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := datasync.NewLocationAzureBlob(ctx, "locationAzureBlobResource", &datasync.LocationAzureBlobArgs{
	AgentArns: pulumi.StringArray{
		pulumi.String("string"),
	},
	AuthenticationType: pulumi.String("string"),
	ContainerUrl:       pulumi.String("string"),
	AccessTier:         pulumi.String("string"),
	BlobType:           pulumi.String("string"),
	SasConfiguration: &datasync.LocationAzureBlobSasConfigurationArgs{
		Token: pulumi.String("string"),
	},
	Subdirectory: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var locationAzureBlobResource = new LocationAzureBlob("locationAzureBlobResource", LocationAzureBlobArgs.builder()
    .agentArns("string")
    .authenticationType("string")
    .containerUrl("string")
    .accessTier("string")
    .blobType("string")
    .sasConfiguration(LocationAzureBlobSasConfigurationArgs.builder()
        .token("string")
        .build())
    .subdirectory("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
location_azure_blob_resource = aws.datasync.LocationAzureBlob("locationAzureBlobResource",
    agent_arns=["string"],
    authentication_type="string",
    container_url="string",
    access_tier="string",
    blob_type="string",
    sas_configuration={
        "token": "string",
    },
    subdirectory="string",
    tags={
        "string": "string",
    })
Copy
const locationAzureBlobResource = new aws.datasync.LocationAzureBlob("locationAzureBlobResource", {
    agentArns: ["string"],
    authenticationType: "string",
    containerUrl: "string",
    accessTier: "string",
    blobType: "string",
    sasConfiguration: {
        token: "string",
    },
    subdirectory: "string",
    tags: {
        string: "string",
    },
});
Copy
type: aws:datasync:LocationAzureBlob
properties:
    accessTier: string
    agentArns:
        - string
    authenticationType: string
    blobType: string
    containerUrl: string
    sasConfiguration:
        token: string
    subdirectory: string
    tags:
        string: string
Copy

LocationAzureBlob Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The LocationAzureBlob resource accepts the following input properties:

AgentArns This property is required. List<string>
A list of DataSync Agent ARNs with which this location will be associated.
AuthenticationType This property is required. string
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
ContainerUrl
This property is required.
Changes to this property will trigger replacement.
string
The URL of the Azure Blob Storage container involved in your transfer.
AccessTier string
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
BlobType string
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
SasConfiguration LocationAzureBlobSasConfiguration
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
Subdirectory string
Path segments if you want to limit your transfer to a virtual directory in the container.
Tags Dictionary<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.
AgentArns This property is required. []string
A list of DataSync Agent ARNs with which this location will be associated.
AuthenticationType This property is required. string
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
ContainerUrl
This property is required.
Changes to this property will trigger replacement.
string
The URL of the Azure Blob Storage container involved in your transfer.
AccessTier string
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
BlobType string
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
SasConfiguration LocationAzureBlobSasConfigurationArgs
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
Subdirectory string
Path segments if you want to limit your transfer to a virtual directory in the container.
Tags 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.
agentArns This property is required. List<String>
A list of DataSync Agent ARNs with which this location will be associated.
authenticationType This property is required. String
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
containerUrl
This property is required.
Changes to this property will trigger replacement.
String
The URL of the Azure Blob Storage container involved in your transfer.
accessTier String
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
blobType String
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
sasConfiguration LocationAzureBlobSasConfiguration
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
subdirectory String
Path segments if you want to limit your transfer to a virtual directory in the container.
tags 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.
agentArns This property is required. string[]
A list of DataSync Agent ARNs with which this location will be associated.
authenticationType This property is required. string
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
containerUrl
This property is required.
Changes to this property will trigger replacement.
string
The URL of the Azure Blob Storage container involved in your transfer.
accessTier string
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
blobType string
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
sasConfiguration LocationAzureBlobSasConfiguration
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
subdirectory string
Path segments if you want to limit your transfer to a virtual directory in the container.
tags {[key: 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.
agent_arns This property is required. Sequence[str]
A list of DataSync Agent ARNs with which this location will be associated.
authentication_type This property is required. str
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
container_url
This property is required.
Changes to this property will trigger replacement.
str
The URL of the Azure Blob Storage container involved in your transfer.
access_tier str
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
blob_type str
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
sas_configuration LocationAzureBlobSasConfigurationArgs
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
subdirectory str
Path segments if you want to limit your transfer to a virtual directory in the container.
tags Mapping[str, str]
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.
agentArns This property is required. List<String>
A list of DataSync Agent ARNs with which this location will be associated.
authenticationType This property is required. String
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
containerUrl
This property is required.
Changes to this property will trigger replacement.
String
The URL of the Azure Blob Storage container involved in your transfer.
accessTier String
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
blobType String
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
sasConfiguration Property Map
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
subdirectory String
Path segments if you want to limit your transfer to a virtual directory in the container.
tags Map<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.

Outputs

All input properties are implicitly available as output properties. Additionally, the LocationAzureBlob resource produces the following output properties:

Arn string
Amazon Resource Name (ARN) of the DataSync Location.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Uri string
Arn string
Amazon Resource Name (ARN) of the DataSync Location.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Uri string
arn String
Amazon Resource Name (ARN) of the DataSync Location.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

uri String
arn string
Amazon Resource Name (ARN) of the DataSync Location.
id string
The provider-assigned unique ID for this managed resource.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

uri string
arn str
Amazon Resource Name (ARN) of the DataSync Location.
id str
The provider-assigned unique ID for this managed resource.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

uri str
arn String
Amazon Resource Name (ARN) of the DataSync Location.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

uri String

Look up Existing LocationAzureBlob Resource

Get an existing LocationAzureBlob resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: LocationAzureBlobState, opts?: CustomResourceOptions): LocationAzureBlob
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access_tier: Optional[str] = None,
        agent_arns: Optional[Sequence[str]] = None,
        arn: Optional[str] = None,
        authentication_type: Optional[str] = None,
        blob_type: Optional[str] = None,
        container_url: Optional[str] = None,
        sas_configuration: Optional[LocationAzureBlobSasConfigurationArgs] = None,
        subdirectory: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        uri: Optional[str] = None) -> LocationAzureBlob
func GetLocationAzureBlob(ctx *Context, name string, id IDInput, state *LocationAzureBlobState, opts ...ResourceOption) (*LocationAzureBlob, error)
public static LocationAzureBlob Get(string name, Input<string> id, LocationAzureBlobState? state, CustomResourceOptions? opts = null)
public static LocationAzureBlob get(String name, Output<String> id, LocationAzureBlobState state, CustomResourceOptions options)
resources:  _:    type: aws:datasync:LocationAzureBlob    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AccessTier string
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
AgentArns List<string>
A list of DataSync Agent ARNs with which this location will be associated.
Arn string
Amazon Resource Name (ARN) of the DataSync Location.
AuthenticationType string
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
BlobType string
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
ContainerUrl Changes to this property will trigger replacement. string
The URL of the Azure Blob Storage container involved in your transfer.
SasConfiguration LocationAzureBlobSasConfiguration
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
Subdirectory string
Path segments if you want to limit your transfer to a virtual directory in the container.
Tags Dictionary<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.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Uri string
AccessTier string
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
AgentArns []string
A list of DataSync Agent ARNs with which this location will be associated.
Arn string
Amazon Resource Name (ARN) of the DataSync Location.
AuthenticationType string
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
BlobType string
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
ContainerUrl Changes to this property will trigger replacement. string
The URL of the Azure Blob Storage container involved in your transfer.
SasConfiguration LocationAzureBlobSasConfigurationArgs
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
Subdirectory string
Path segments if you want to limit your transfer to a virtual directory in the container.
Tags 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.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Uri string
accessTier String
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
agentArns List<String>
A list of DataSync Agent ARNs with which this location will be associated.
arn String
Amazon Resource Name (ARN) of the DataSync Location.
authenticationType String
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
blobType String
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
containerUrl Changes to this property will trigger replacement. String
The URL of the Azure Blob Storage container involved in your transfer.
sasConfiguration LocationAzureBlobSasConfiguration
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
subdirectory String
Path segments if you want to limit your transfer to a virtual directory in the container.
tags 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.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

uri String
accessTier string
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
agentArns string[]
A list of DataSync Agent ARNs with which this location will be associated.
arn string
Amazon Resource Name (ARN) of the DataSync Location.
authenticationType string
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
blobType string
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
containerUrl Changes to this property will trigger replacement. string
The URL of the Azure Blob Storage container involved in your transfer.
sasConfiguration LocationAzureBlobSasConfiguration
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
subdirectory string
Path segments if you want to limit your transfer to a virtual directory in the container.
tags {[key: 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.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

uri string
access_tier str
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
agent_arns Sequence[str]
A list of DataSync Agent ARNs with which this location will be associated.
arn str
Amazon Resource Name (ARN) of the DataSync Location.
authentication_type str
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
blob_type str
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
container_url Changes to this property will trigger replacement. str
The URL of the Azure Blob Storage container involved in your transfer.
sas_configuration LocationAzureBlobSasConfigurationArgs
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
subdirectory str
Path segments if you want to limit your transfer to a virtual directory in the container.
tags Mapping[str, str]
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.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

uri str
accessTier String
The access tier that you want your objects or files transferred into. Valid values: HOT, COOL and ARCHIVE. Default: HOT.
agentArns List<String>
A list of DataSync Agent ARNs with which this location will be associated.
arn String
Amazon Resource Name (ARN) of the DataSync Location.
authenticationType String
The authentication method DataSync uses to access your Azure Blob Storage. Valid values: SAS.
blobType String
The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Valid values: BLOB. Default: BLOB.
containerUrl Changes to this property will trigger replacement. String
The URL of the Azure Blob Storage container involved in your transfer.
sasConfiguration Property Map
The SAS configuration that allows DataSync to access your Azure Blob Storage. See configuration below.
subdirectory String
Path segments if you want to limit your transfer to a virtual directory in the container.
tags Map<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.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

uri String

Supporting Types

LocationAzureBlobSasConfiguration
, LocationAzureBlobSasConfigurationArgs

Token This property is required. string
A SAS token that provides permissions to access your Azure Blob Storage.
Token This property is required. string
A SAS token that provides permissions to access your Azure Blob Storage.
token This property is required. String
A SAS token that provides permissions to access your Azure Blob Storage.
token This property is required. string
A SAS token that provides permissions to access your Azure Blob Storage.
token This property is required. str
A SAS token that provides permissions to access your Azure Blob Storage.
token This property is required. String
A SAS token that provides permissions to access your Azure Blob Storage.

Import

Using pulumi import, import aws_datasync_location_azure_blob using the Amazon Resource Name (ARN). For example:

$ pulumi import aws:datasync/locationAzureBlob:LocationAzureBlob example arn:aws:datasync:us-east-1:123456789012:location/loc-12345678901234567
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.