aws_sdk_datasync/client/describe_location_azure_blob.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeLocationAzureBlob`](crate::operation::describe_location_azure_blob::builders::DescribeLocationAzureBlobFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`location_arn(impl Into<String>)`](crate::operation::describe_location_azure_blob::builders::DescribeLocationAzureBlobFluentBuilder::location_arn) / [`set_location_arn(Option<String>)`](crate::operation::describe_location_azure_blob::builders::DescribeLocationAzureBlobFluentBuilder::set_location_arn):<br>required: **true**<br><p>Specifies the Amazon Resource Name (ARN) of your Azure Blob Storage transfer location.</p><br>
/// - On success, responds with [`DescribeLocationAzureBlobOutput`](crate::operation::describe_location_azure_blob::DescribeLocationAzureBlobOutput) with field(s):
/// - [`location_arn(Option<String>)`](crate::operation::describe_location_azure_blob::DescribeLocationAzureBlobOutput::location_arn): <p>The ARN of your Azure Blob Storage transfer location.</p>
/// - [`location_uri(Option<String>)`](crate::operation::describe_location_azure_blob::DescribeLocationAzureBlobOutput::location_uri): <p>The URL of the Azure Blob Storage container involved in your transfer.</p>
/// - [`authentication_type(Option<AzureBlobAuthenticationType>)`](crate::operation::describe_location_azure_blob::DescribeLocationAzureBlobOutput::authentication_type): <p>The authentication method DataSync uses to access your Azure Blob Storage. DataSync can access blob storage using a shared access signature (SAS).</p>
/// - [`blob_type(Option<AzureBlobType>)`](crate::operation::describe_location_azure_blob::DescribeLocationAzureBlobOutput::blob_type): <p>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 <a href="https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs">Azure Blob Storage documentation</a>.</p>
/// - [`access_tier(Option<AzureAccessTier>)`](crate::operation::describe_location_azure_blob::DescribeLocationAzureBlobOutput::access_tier): <p>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 <a href="https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers">Access tiers</a>.</p>
/// - [`agent_arns(Option<Vec::<String>>)`](crate::operation::describe_location_azure_blob::DescribeLocationAzureBlobOutput::agent_arns): <p>The ARNs of the DataSync agents that can connect with your Azure Blob Storage container.</p>
/// - [`creation_time(Option<DateTime>)`](crate::operation::describe_location_azure_blob::DescribeLocationAzureBlobOutput::creation_time): <p>The time that your Azure Blob Storage transfer location was created.</p>
/// - On failure, responds with [`SdkError<DescribeLocationAzureBlobError>`](crate::operation::describe_location_azure_blob::DescribeLocationAzureBlobError)
pub fn describe_location_azure_blob(&self) -> crate::operation::describe_location_azure_blob::builders::DescribeLocationAzureBlobFluentBuilder {
crate::operation::describe_location_azure_blob::builders::DescribeLocationAzureBlobFluentBuilder::new(self.handle.clone())
}
}