/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the datasync-2018-11-09.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.DataSync.Model
{
///
/// 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.
///
///
public partial class AzureBlobSasConfiguration
{
private string _token;
///
/// Gets and sets the property Token.
///
/// 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
///
///
///
[AWSProperty(Required=true, Sensitive=true, Min=1, Max=255)]
public string Token
{
get { return this._token; }
set { this._token = value; }
}
// Check to see if Token property is set
internal bool IsSetToken()
{
return this._token != null;
}
}
}