/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The metadata that's associated with a standard framework or a custom
* framework. See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the framework.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the framework.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the framework.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the framework.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the framework.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the framework.
*/ inline AssessmentFrameworkMetadata& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the framework.
*/ inline AssessmentFrameworkMetadata& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the framework.
*/ inline AssessmentFrameworkMetadata& WithArn(const char* value) { SetArn(value); return *this;} /** *The unique identifier for the framework.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *The unique identifier for the framework.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *The unique identifier for the framework.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *The unique identifier for the framework.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *The unique identifier for the framework.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *The unique identifier for the framework.
*/ inline AssessmentFrameworkMetadata& WithId(const Aws::String& value) { SetId(value); return *this;} /** *The unique identifier for the framework.
*/ inline AssessmentFrameworkMetadata& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *The unique identifier for the framework.
*/ inline AssessmentFrameworkMetadata& WithId(const char* value) { SetId(value); return *this;} /** *The framework type, such as a standard framework or a custom framework.
*/ inline const FrameworkType& GetType() const{ return m_type; } /** *The framework type, such as a standard framework or a custom framework.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The framework type, such as a standard framework or a custom framework.
*/ inline void SetType(const FrameworkType& value) { m_typeHasBeenSet = true; m_type = value; } /** *The framework type, such as a standard framework or a custom framework.
*/ inline void SetType(FrameworkType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The framework type, such as a standard framework or a custom framework.
*/ inline AssessmentFrameworkMetadata& WithType(const FrameworkType& value) { SetType(value); return *this;} /** *The framework type, such as a standard framework or a custom framework.
*/ inline AssessmentFrameworkMetadata& WithType(FrameworkType&& value) { SetType(std::move(value)); return *this;} /** *The name of the framework.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the framework.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the framework.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the framework.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the framework.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the framework.
*/ inline AssessmentFrameworkMetadata& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the framework.
*/ inline AssessmentFrameworkMetadata& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the framework.
*/ inline AssessmentFrameworkMetadata& WithName(const char* value) { SetName(value); return *this;} /** *The description of the framework.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *The description of the framework.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *The description of the framework.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *The description of the framework.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *The description of the framework.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *The description of the framework.
*/ inline AssessmentFrameworkMetadata& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *The description of the framework.
*/ inline AssessmentFrameworkMetadata& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *The description of the framework.
*/ inline AssessmentFrameworkMetadata& WithDescription(const char* value) { SetDescription(value); return *this;} /** *The logo that's associated with the framework.
*/ inline const Aws::String& GetLogo() const{ return m_logo; } /** *The logo that's associated with the framework.
*/ inline bool LogoHasBeenSet() const { return m_logoHasBeenSet; } /** *The logo that's associated with the framework.
*/ inline void SetLogo(const Aws::String& value) { m_logoHasBeenSet = true; m_logo = value; } /** *The logo that's associated with the framework.
*/ inline void SetLogo(Aws::String&& value) { m_logoHasBeenSet = true; m_logo = std::move(value); } /** *The logo that's associated with the framework.
*/ inline void SetLogo(const char* value) { m_logoHasBeenSet = true; m_logo.assign(value); } /** *The logo that's associated with the framework.
*/ inline AssessmentFrameworkMetadata& WithLogo(const Aws::String& value) { SetLogo(value); return *this;} /** *The logo that's associated with the framework.
*/ inline AssessmentFrameworkMetadata& WithLogo(Aws::String&& value) { SetLogo(std::move(value)); return *this;} /** *The logo that's associated with the framework.
*/ inline AssessmentFrameworkMetadata& WithLogo(const char* value) { SetLogo(value); return *this;} /** *The compliance type that the new custom framework supports, such as CIS or * HIPAA.
*/ inline const Aws::String& GetComplianceType() const{ return m_complianceType; } /** *The compliance type that the new custom framework supports, such as CIS or * HIPAA.
*/ inline bool ComplianceTypeHasBeenSet() const { return m_complianceTypeHasBeenSet; } /** *The compliance type that the new custom framework supports, such as CIS or * HIPAA.
*/ inline void SetComplianceType(const Aws::String& value) { m_complianceTypeHasBeenSet = true; m_complianceType = value; } /** *The compliance type that the new custom framework supports, such as CIS or * HIPAA.
*/ inline void SetComplianceType(Aws::String&& value) { m_complianceTypeHasBeenSet = true; m_complianceType = std::move(value); } /** *The compliance type that the new custom framework supports, such as CIS or * HIPAA.
*/ inline void SetComplianceType(const char* value) { m_complianceTypeHasBeenSet = true; m_complianceType.assign(value); } /** *The compliance type that the new custom framework supports, such as CIS or * HIPAA.
*/ inline AssessmentFrameworkMetadata& WithComplianceType(const Aws::String& value) { SetComplianceType(value); return *this;} /** *The compliance type that the new custom framework supports, such as CIS or * HIPAA.
*/ inline AssessmentFrameworkMetadata& WithComplianceType(Aws::String&& value) { SetComplianceType(std::move(value)); return *this;} /** *The compliance type that the new custom framework supports, such as CIS or * HIPAA.
*/ inline AssessmentFrameworkMetadata& WithComplianceType(const char* value) { SetComplianceType(value); return *this;} /** *The number of controls that are associated with the framework.
*/ inline int GetControlsCount() const{ return m_controlsCount; } /** *The number of controls that are associated with the framework.
*/ inline bool ControlsCountHasBeenSet() const { return m_controlsCountHasBeenSet; } /** *The number of controls that are associated with the framework.
*/ inline void SetControlsCount(int value) { m_controlsCountHasBeenSet = true; m_controlsCount = value; } /** *The number of controls that are associated with the framework.
*/ inline AssessmentFrameworkMetadata& WithControlsCount(int value) { SetControlsCount(value); return *this;} /** *The number of control sets that are associated with the framework.
*/ inline int GetControlSetsCount() const{ return m_controlSetsCount; } /** *The number of control sets that are associated with the framework.
*/ inline bool ControlSetsCountHasBeenSet() const { return m_controlSetsCountHasBeenSet; } /** *The number of control sets that are associated with the framework.
*/ inline void SetControlSetsCount(int value) { m_controlSetsCountHasBeenSet = true; m_controlSetsCount = value; } /** *The number of control sets that are associated with the framework.
*/ inline AssessmentFrameworkMetadata& WithControlSetsCount(int value) { SetControlSetsCount(value); return *this;} /** *The time when the framework was created.
*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *The time when the framework was created.
*/ inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; } /** *The time when the framework was created.
*/ inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; } /** *The time when the framework was created.
*/ inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); } /** *The time when the framework was created.
*/ inline AssessmentFrameworkMetadata& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *The time when the framework was created.
*/ inline AssessmentFrameworkMetadata& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *The time when the framework was most recently updated.
*/ inline const Aws::Utils::DateTime& GetLastUpdatedAt() const{ return m_lastUpdatedAt; } /** *The time when the framework was most recently updated.
*/ inline bool LastUpdatedAtHasBeenSet() const { return m_lastUpdatedAtHasBeenSet; } /** *The time when the framework was most recently updated.
*/ inline void SetLastUpdatedAt(const Aws::Utils::DateTime& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = value; } /** *The time when the framework was most recently updated.
*/ inline void SetLastUpdatedAt(Aws::Utils::DateTime&& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = std::move(value); } /** *The time when the framework was most recently updated.
*/ inline AssessmentFrameworkMetadata& WithLastUpdatedAt(const Aws::Utils::DateTime& value) { SetLastUpdatedAt(value); return *this;} /** *The time when the framework was most recently updated.
*/ inline AssessmentFrameworkMetadata& WithLastUpdatedAt(Aws::Utils::DateTime&& value) { SetLastUpdatedAt(std::move(value)); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::String m_id; bool m_idHasBeenSet = false; FrameworkType m_type; bool m_typeHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_logo; bool m_logoHasBeenSet = false; Aws::String m_complianceType; bool m_complianceTypeHasBeenSet = false; int m_controlsCount; bool m_controlsCountHasBeenSet = false; int m_controlSetsCount; bool m_controlSetsCountHasBeenSet = false; Aws::Utils::DateTime m_createdAt; bool m_createdAtHasBeenSet = false; Aws::Utils::DateTime m_lastUpdatedAt; bool m_lastUpdatedAtHasBeenSet = false; }; } // namespace Model } // namespace AuditManager } // namespace Aws