Class: Aws::DataSync::Types::AzureBlobSasConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::AzureBlobSasConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datasync/types.rb
Overview
The shared access signature (SAS) configuration that allows DataSync to access your Microsoft Azure Blob Storage.
For more information, see [SAS tokens] for accessing your Azure Blob Storage.
Constant Summary collapse
- SENSITIVE =
[:token]
Instance Attribute Summary collapse
-
#token ⇒ String
Specifies a SAS token that provides permissions to access your Azure Blob Storage.
Instance Attribute Details
#token ⇒ String
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`
160 161 162 163 164 |
# File 'lib/aws-sdk-datasync/types.rb', line 160 class AzureBlobSasConfiguration < Struct.new( :token) SENSITIVE = [:token] include Aws::Structure end |