Interface CfnLocationAzureBlobProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLocationAzureBlobProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:13.856Z") @Stability(Stable) public interface CfnLocationAzureBlobProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnLocationAzureBlob.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.datasync.*;
 CfnLocationAzureBlobProps cfnLocationAzureBlobProps = CfnLocationAzureBlobProps.builder()
         .agentArns(List.of("agentArns"))
         .azureBlobAuthenticationType("azureBlobAuthenticationType")
         // the properties below are optional
         .azureAccessTier("azureAccessTier")
         .azureBlobContainerUrl("azureBlobContainerUrl")
         .azureBlobSasConfiguration(AzureBlobSasConfigurationProperty.builder()
                 .azureBlobSasToken("azureBlobSasToken")
                 .build())
         .azureBlobType("azureBlobType")
         .subdirectory("subdirectory")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: