This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-quicksight/include/aws/quicksight/model/DataSourceCredentials.h

150 lines
6.0 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/quicksight/QuickSight_EXPORTS.h>
#include <aws/quicksight/model/CredentialPair.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace QuickSight
{
namespace Model
{
/**
* <p>Data source credentials. This is a variant type structure. For this structure
* to be valid, only one of the attributes can be non-null.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSourceCredentials">AWS
* API Reference</a></p>
*/
class AWS_QUICKSIGHT_API DataSourceCredentials
{
public:
DataSourceCredentials();
DataSourceCredentials(Aws::Utils::Json::JsonView jsonValue);
DataSourceCredentials& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Credential pair. For more information, see <a>CredentialPair</a>.</p>
*/
inline const CredentialPair& GetCredentialPair() const{ return m_credentialPair; }
/**
* <p>Credential pair. For more information, see <a>CredentialPair</a>.</p>
*/
inline bool CredentialPairHasBeenSet() const { return m_credentialPairHasBeenSet; }
/**
* <p>Credential pair. For more information, see <a>CredentialPair</a>.</p>
*/
inline void SetCredentialPair(const CredentialPair& value) { m_credentialPairHasBeenSet = true; m_credentialPair = value; }
/**
* <p>Credential pair. For more information, see <a>CredentialPair</a>.</p>
*/
inline void SetCredentialPair(CredentialPair&& value) { m_credentialPairHasBeenSet = true; m_credentialPair = std::move(value); }
/**
* <p>Credential pair. For more information, see <a>CredentialPair</a>.</p>
*/
inline DataSourceCredentials& WithCredentialPair(const CredentialPair& value) { SetCredentialPair(value); return *this;}
/**
* <p>Credential pair. For more information, see <a>CredentialPair</a>.</p>
*/
inline DataSourceCredentials& WithCredentialPair(CredentialPair&& value) { SetCredentialPair(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of a data source that has the credential pair
* that you want to use. When <code>CopySourceArn</code> is not null, the
* credential pair from the data source in the ARN is used as the credentials for
* the <code>DataSourceCredentials</code> structure.</p>
*/
inline const Aws::String& GetCopySourceArn() const{ return m_copySourceArn; }
/**
* <p>The Amazon Resource Name (ARN) of a data source that has the credential pair
* that you want to use. When <code>CopySourceArn</code> is not null, the
* credential pair from the data source in the ARN is used as the credentials for
* the <code>DataSourceCredentials</code> structure.</p>
*/
inline bool CopySourceArnHasBeenSet() const { return m_copySourceArnHasBeenSet; }
/**
* <p>The Amazon Resource Name (ARN) of a data source that has the credential pair
* that you want to use. When <code>CopySourceArn</code> is not null, the
* credential pair from the data source in the ARN is used as the credentials for
* the <code>DataSourceCredentials</code> structure.</p>
*/
inline void SetCopySourceArn(const Aws::String& value) { m_copySourceArnHasBeenSet = true; m_copySourceArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of a data source that has the credential pair
* that you want to use. When <code>CopySourceArn</code> is not null, the
* credential pair from the data source in the ARN is used as the credentials for
* the <code>DataSourceCredentials</code> structure.</p>
*/
inline void SetCopySourceArn(Aws::String&& value) { m_copySourceArnHasBeenSet = true; m_copySourceArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of a data source that has the credential pair
* that you want to use. When <code>CopySourceArn</code> is not null, the
* credential pair from the data source in the ARN is used as the credentials for
* the <code>DataSourceCredentials</code> structure.</p>
*/
inline void SetCopySourceArn(const char* value) { m_copySourceArnHasBeenSet = true; m_copySourceArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of a data source that has the credential pair
* that you want to use. When <code>CopySourceArn</code> is not null, the
* credential pair from the data source in the ARN is used as the credentials for
* the <code>DataSourceCredentials</code> structure.</p>
*/
inline DataSourceCredentials& WithCopySourceArn(const Aws::String& value) { SetCopySourceArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of a data source that has the credential pair
* that you want to use. When <code>CopySourceArn</code> is not null, the
* credential pair from the data source in the ARN is used as the credentials for
* the <code>DataSourceCredentials</code> structure.</p>
*/
inline DataSourceCredentials& WithCopySourceArn(Aws::String&& value) { SetCopySourceArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of a data source that has the credential pair
* that you want to use. When <code>CopySourceArn</code> is not null, the
* credential pair from the data source in the ARN is used as the credentials for
* the <code>DataSourceCredentials</code> structure.</p>
*/
inline DataSourceCredentials& WithCopySourceArn(const char* value) { SetCopySourceArn(value); return *this;}
private:
CredentialPair m_credentialPair;
bool m_credentialPairHasBeenSet;
Aws::String m_copySourceArn;
bool m_copySourceArnHasBeenSet;
};
} // namespace Model
} // namespace QuickSight
} // namespace Aws