DataSync / Client / describe_location_azure_blob

describe_location_azure_blob#

DataSync.Client.describe_location_azure_blob(**kwargs)#

Provides details about how an DataSync transfer location for Microsoft Azure Blob Storage is configured.

See also: AWS API Documentation

Request Syntax

response = client.describe_location_azure_blob(
    LocationArn='string'
)
Parameters:

LocationArn (string) –

[REQUIRED]

Specifies the Amazon Resource Name (ARN) of your Azure Blob Storage transfer location.

Return type:

dict

Returns:

Response Syntax

{
    'LocationArn': 'string',
    'LocationUri': 'string',
    'AuthenticationType': 'SAS',
    'BlobType': 'BLOCK',
    'AccessTier': 'HOT'|'COOL'|'ARCHIVE',
    'AgentArns': [
        'string',
    ],
    'CreationTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) –

    • LocationArn (string) –

      The ARN of your Azure Blob Storage transfer location.

    • LocationUri (string) –

      The URL of the Azure Blob Storage container involved in your transfer.

    • AuthenticationType (string) –

      The authentication method DataSync uses to access your Azure Blob Storage. DataSync can access blob storage using a shared access signature (SAS).

    • BlobType (string) –

      The type of blob that you want your objects or files to be when transferring them into Azure Blob Storage. Currently, DataSync only supports moving data into Azure Blob Storage as block blobs. For more information on blob types, see the Azure Blob Storage documentation.

    • AccessTier (string) –

      The access tier that you want your objects or files transferred into. This only applies when using the location as a transfer destination. For more information, see Access tiers.

    • AgentArns (list) –

      The ARNs of the DataSync agents that can connect with your Azure Blob Storage container.

      • (string) –

    • CreationTime (datetime) –

      The time that your Azure Blob Storage transfer location was created.

Exceptions