aws_sdk_datasync/client/
update_location_azure_blob.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`UpdateLocationAzureBlob`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`location_arn(impl Into<String>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::location_arn) / [`set_location_arn(Option<String>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::set_location_arn):<br>required: **true**<br><p>Specifies the ARN of the Azure Blob Storage transfer location that you're updating.</p><br>
7    ///   - [`subdirectory(impl Into<String>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::subdirectory) / [`set_subdirectory(Option<String>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::set_subdirectory):<br>required: **false**<br><p>Specifies path segments if you want to limit your transfer to a virtual directory in your container (for example, <code>/my/images</code>).</p><br>
8    ///   - [`authentication_type(AzureBlobAuthenticationType)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::authentication_type) / [`set_authentication_type(Option<AzureBlobAuthenticationType>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::set_authentication_type):<br>required: **false**<br><p>Specifies the authentication method DataSync uses to access your Azure Blob Storage. DataSync can access blob storage using a shared access signature (SAS).</p><br>
9    ///   - [`sas_configuration(AzureBlobSasConfiguration)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::sas_configuration) / [`set_sas_configuration(Option<AzureBlobSasConfiguration>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::set_sas_configuration):<br>required: **false**<br><p>Specifies the SAS configuration that allows DataSync to access your Azure Blob Storage.</p><br>
10    ///   - [`blob_type(AzureBlobType)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::blob_type) / [`set_blob_type(Option<AzureBlobType>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::set_blob_type):<br>required: **false**<br><p>Specifies 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><br>
11    ///   - [`access_tier(AzureAccessTier)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::access_tier) / [`set_access_tier(Option<AzureAccessTier>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::set_access_tier):<br>required: **false**<br><p>Specifies 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><br>
12    ///   - [`agent_arns(impl Into<String>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::agent_arns) / [`set_agent_arns(Option<Vec::<String>>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::set_agent_arns):<br>required: **false**<br><p>(Optional) Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect with your Azure Blob Storage container. If you are setting up an agentless cross-cloud transfer, you do not need to specify a value for this parameter.</p> <p>You can specify more than one agent. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html">Using multiple agents for your transfer</a>.</p><note>  <p>You cannot add or remove agents from a storage location after you initially create it.</p> </note><br>
13    ///   - [`cmk_secret_config(CmkSecretConfig)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::cmk_secret_config) / [`set_cmk_secret_config(Option<CmkSecretConfig>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::set_cmk_secret_config):<br>required: **false**<br><p>Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed KMS key.</p><br>
14    ///   - [`custom_secret_config(CustomSecretConfig)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::custom_secret_config) / [`set_custom_secret_config(Option<CustomSecretConfig>)`](crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::set_custom_secret_config):<br>required: **false**<br><p>Specifies configuration information for a customer-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed KMS key.</p><br>
15    /// - On success, responds with [`UpdateLocationAzureBlobOutput`](crate::operation::update_location_azure_blob::UpdateLocationAzureBlobOutput)
16    /// - On failure, responds with [`SdkError<UpdateLocationAzureBlobError>`](crate::operation::update_location_azure_blob::UpdateLocationAzureBlobError)
17    pub fn update_location_azure_blob(&self) -> crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder {
18        crate::operation::update_location_azure_blob::builders::UpdateLocationAzureBlobFluentBuilder::new(self.handle.clone())
19    }
20}