Struct aws_sdk_datasync::types::AzureBlobSasConfiguration
source · #[non_exhaustive]pub struct AzureBlobSasConfiguration {
pub token: Option<String>,
}
Expand description
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.token: Option<String>
Specifies a SAS token that provides permissions at the Azure storage account, container, or folder level.
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
Implementations§
source§impl AzureBlobSasConfiguration
impl AzureBlobSasConfiguration
sourcepub fn token(&self) -> Option<&str>
pub fn token(&self) -> Option<&str>
Specifies a SAS token that provides permissions at the Azure storage account, container, or folder level.
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
source§impl AzureBlobSasConfiguration
impl AzureBlobSasConfiguration
sourcepub fn builder() -> AzureBlobSasConfigurationBuilder
pub fn builder() -> AzureBlobSasConfigurationBuilder
Creates a new builder-style object to manufacture AzureBlobSasConfiguration
.
Trait Implementations§
source§impl Clone for AzureBlobSasConfiguration
impl Clone for AzureBlobSasConfiguration
source§fn clone(&self) -> AzureBlobSasConfiguration
fn clone(&self) -> AzureBlobSasConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AzureBlobSasConfiguration
impl Debug for AzureBlobSasConfiguration
source§impl PartialEq<AzureBlobSasConfiguration> for AzureBlobSasConfiguration
impl PartialEq<AzureBlobSasConfiguration> for AzureBlobSasConfiguration
source§fn eq(&self, other: &AzureBlobSasConfiguration) -> bool
fn eq(&self, other: &AzureBlobSasConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.