interface AzureBlobSasConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataSync.Mixins.CfnLocationAzureBlobPropsMixin.AzureBlobSasConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatasync/mixins#CfnLocationAzureBlobPropsMixin_AzureBlobSasConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.datasync.mixins.CfnLocationAzureBlobPropsMixin.AzureBlobSasConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_datasync.mixins.CfnLocationAzureBlobPropsMixin.AzureBlobSasConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datasync » mixins » CfnLocationAzureBlobPropsMixin » AzureBlobSasConfigurationProperty |
The shared access signature (SAS) configuration that allows AWS DataSync to access your Microsoft Azure Blob Storage.
For more information, see SAS tokens for accessing your Azure Blob Storage.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datasync_mixins } from '@aws-cdk/mixins-preview/aws-datasync';
const azureBlobSasConfigurationProperty: datasync_mixins.CfnLocationAzureBlobPropsMixin.AzureBlobSasConfigurationProperty = {
azureBlobSasToken: 'azureBlobSasToken',
};
Properties
| Name | Type | Description |
|---|---|---|
| azure | string | Specifies a SAS token that provides permissions to access your Azure Blob Storage. |
azureBlobSasToken?
Type:
string
(optional)
Specifies a SAS token that provides permissions to access your Azure Blob Storage.
The token is part of the SAS URI string that comes after the storage resource URI and a question mark. A token looks something like this:
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

.NET
Go
Java
Python
TypeScript