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

315 lines
10 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/codeartifact/CodeArtifact_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/codeartifact/model/DomainStatus.h>
#include <aws/core/utils/DateTime.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace CodeArtifact
{
namespace Model
{
/**
* <p> Information about a domain, including its name, Amazon Resource Name (ARN),
* and status. The <a
* href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListDomains.html">
* <code>ListDomains</code> </a> operation returns a list of
* <code>DomainSummary</code> objects. </p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/DomainSummary">AWS
* API Reference</a></p>
*/
class AWS_CODEARTIFACT_API DomainSummary
{
public:
DomainSummary();
DomainSummary(Aws::Utils::Json::JsonView jsonValue);
DomainSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p> The name of the domain. </p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p> The name of the domain. </p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p> The name of the domain. </p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p> The name of the domain. </p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p> The name of the domain. </p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p> The name of the domain. </p>
*/
inline DomainSummary& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p> The name of the domain. </p>
*/
inline DomainSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p> The name of the domain. </p>
*/
inline DomainSummary& WithName(const char* value) { SetName(value); return *this;}
/**
* <p> The 12-digit account number of the AWS account that owns the domain. It does
* not include dashes or spaces. </p>
*/
inline const Aws::String& GetOwner() const{ return m_owner; }
/**
* <p> The 12-digit account number of the AWS account that owns the domain. It does
* not include dashes or spaces. </p>
*/
inline bool OwnerHasBeenSet() const { return m_ownerHasBeenSet; }
/**
* <p> The 12-digit account number of the AWS account that owns the domain. It does
* not include dashes or spaces. </p>
*/
inline void SetOwner(const Aws::String& value) { m_ownerHasBeenSet = true; m_owner = value; }
/**
* <p> The 12-digit account number of the AWS account that owns the domain. It does
* not include dashes or spaces. </p>
*/
inline void SetOwner(Aws::String&& value) { m_ownerHasBeenSet = true; m_owner = std::move(value); }
/**
* <p> The 12-digit account number of the AWS account that owns the domain. It does
* not include dashes or spaces. </p>
*/
inline void SetOwner(const char* value) { m_ownerHasBeenSet = true; m_owner.assign(value); }
/**
* <p> The 12-digit account number of the AWS account that owns the domain. It does
* not include dashes or spaces. </p>
*/
inline DomainSummary& WithOwner(const Aws::String& value) { SetOwner(value); return *this;}
/**
* <p> The 12-digit account number of the AWS account that owns the domain. It does
* not include dashes or spaces. </p>
*/
inline DomainSummary& WithOwner(Aws::String&& value) { SetOwner(std::move(value)); return *this;}
/**
* <p> The 12-digit account number of the AWS account that owns the domain. It does
* not include dashes or spaces. </p>
*/
inline DomainSummary& WithOwner(const char* value) { SetOwner(value); return *this;}
/**
* <p> The ARN of the domain. </p>
*/
inline const Aws::String& GetArn() const{ return m_arn; }
/**
* <p> The ARN of the domain. </p>
*/
inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
/**
* <p> The ARN of the domain. </p>
*/
inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
/**
* <p> The ARN of the domain. </p>
*/
inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
/**
* <p> The ARN of the domain. </p>
*/
inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
/**
* <p> The ARN of the domain. </p>
*/
inline DomainSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
/**
* <p> The ARN of the domain. </p>
*/
inline DomainSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
/**
* <p> The ARN of the domain. </p>
*/
inline DomainSummary& WithArn(const char* value) { SetArn(value); return *this;}
/**
* <p> A string that contains the status of the domain. The valid values are: </p>
* <ul> <li> <p> <code>Active</code> </p> </li> <li> <p> <code>Deleted</code> </p>
* </li> </ul>
*/
inline const DomainStatus& GetStatus() const{ return m_status; }
/**
* <p> A string that contains the status of the domain. The valid values are: </p>
* <ul> <li> <p> <code>Active</code> </p> </li> <li> <p> <code>Deleted</code> </p>
* </li> </ul>
*/
inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
/**
* <p> A string that contains the status of the domain. The valid values are: </p>
* <ul> <li> <p> <code>Active</code> </p> </li> <li> <p> <code>Deleted</code> </p>
* </li> </ul>
*/
inline void SetStatus(const DomainStatus& value) { m_statusHasBeenSet = true; m_status = value; }
/**
* <p> A string that contains the status of the domain. The valid values are: </p>
* <ul> <li> <p> <code>Active</code> </p> </li> <li> <p> <code>Deleted</code> </p>
* </li> </ul>
*/
inline void SetStatus(DomainStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
/**
* <p> A string that contains the status of the domain. The valid values are: </p>
* <ul> <li> <p> <code>Active</code> </p> </li> <li> <p> <code>Deleted</code> </p>
* </li> </ul>
*/
inline DomainSummary& WithStatus(const DomainStatus& value) { SetStatus(value); return *this;}
/**
* <p> A string that contains the status of the domain. The valid values are: </p>
* <ul> <li> <p> <code>Active</code> </p> </li> <li> <p> <code>Deleted</code> </p>
* </li> </ul>
*/
inline DomainSummary& WithStatus(DomainStatus&& value) { SetStatus(std::move(value)); return *this;}
/**
* <p> A timestamp that contains the date and time the domain was created. </p>
*/
inline const Aws::Utils::DateTime& GetCreatedTime() const{ return m_createdTime; }
/**
* <p> A timestamp that contains the date and time the domain was created. </p>
*/
inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; }
/**
* <p> A timestamp that contains the date and time the domain was created. </p>
*/
inline void SetCreatedTime(const Aws::Utils::DateTime& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; }
/**
* <p> A timestamp that contains the date and time the domain was created. </p>
*/
inline void SetCreatedTime(Aws::Utils::DateTime&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); }
/**
* <p> A timestamp that contains the date and time the domain was created. </p>
*/
inline DomainSummary& WithCreatedTime(const Aws::Utils::DateTime& value) { SetCreatedTime(value); return *this;}
/**
* <p> A timestamp that contains the date and time the domain was created. </p>
*/
inline DomainSummary& WithCreatedTime(Aws::Utils::DateTime&& value) { SetCreatedTime(std::move(value)); return *this;}
/**
* <p> The key used to encrypt the domain. </p>
*/
inline const Aws::String& GetEncryptionKey() const{ return m_encryptionKey; }
/**
* <p> The key used to encrypt the domain. </p>
*/
inline bool EncryptionKeyHasBeenSet() const { return m_encryptionKeyHasBeenSet; }
/**
* <p> The key used to encrypt the domain. </p>
*/
inline void SetEncryptionKey(const Aws::String& value) { m_encryptionKeyHasBeenSet = true; m_encryptionKey = value; }
/**
* <p> The key used to encrypt the domain. </p>
*/
inline void SetEncryptionKey(Aws::String&& value) { m_encryptionKeyHasBeenSet = true; m_encryptionKey = std::move(value); }
/**
* <p> The key used to encrypt the domain. </p>
*/
inline void SetEncryptionKey(const char* value) { m_encryptionKeyHasBeenSet = true; m_encryptionKey.assign(value); }
/**
* <p> The key used to encrypt the domain. </p>
*/
inline DomainSummary& WithEncryptionKey(const Aws::String& value) { SetEncryptionKey(value); return *this;}
/**
* <p> The key used to encrypt the domain. </p>
*/
inline DomainSummary& WithEncryptionKey(Aws::String&& value) { SetEncryptionKey(std::move(value)); return *this;}
/**
* <p> The key used to encrypt the domain. </p>
*/
inline DomainSummary& WithEncryptionKey(const char* value) { SetEncryptionKey(value); return *this;}
private:
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_owner;
bool m_ownerHasBeenSet;
Aws::String m_arn;
bool m_arnHasBeenSet;
DomainStatus m_status;
bool m_statusHasBeenSet;
Aws::Utils::DateTime m_createdTime;
bool m_createdTimeHasBeenSet;
Aws::String m_encryptionKey;
bool m_encryptionKeyHasBeenSet;
};
} // namespace Model
} // namespace CodeArtifact
} // namespace Aws