/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SSOAdmin { namespace Model { /** *

Provides information about the AccountAssignment creation * request.

See Also:

AWS * API Reference

*/ class AccountAssignmentOperationStatusMetadata { public: AWS_SSOADMIN_API AccountAssignmentOperationStatusMetadata(); AWS_SSOADMIN_API AccountAssignmentOperationStatusMetadata(Aws::Utils::Json::JsonView jsonValue); AWS_SSOADMIN_API AccountAssignmentOperationStatusMetadata& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SSOADMIN_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The status of the permission set provisioning process.

*/ inline const StatusValues& GetStatus() const{ return m_status; } /** *

The status of the permission set provisioning process.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The status of the permission set provisioning process.

*/ inline void SetStatus(const StatusValues& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The status of the permission set provisioning process.

*/ inline void SetStatus(StatusValues&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The status of the permission set provisioning process.

*/ inline AccountAssignmentOperationStatusMetadata& WithStatus(const StatusValues& value) { SetStatus(value); return *this;} /** *

The status of the permission set provisioning process.

*/ inline AccountAssignmentOperationStatusMetadata& WithStatus(StatusValues&& value) { SetStatus(std::move(value)); return *this;} /** *

The identifier for tracking the request operation that is generated by the * universally unique identifier (UUID) workflow.

*/ inline const Aws::String& GetRequestId() const{ return m_requestId; } /** *

The identifier for tracking the request operation that is generated by the * universally unique identifier (UUID) workflow.

*/ inline bool RequestIdHasBeenSet() const { return m_requestIdHasBeenSet; } /** *

The identifier for tracking the request operation that is generated by the * universally unique identifier (UUID) workflow.

*/ inline void SetRequestId(const Aws::String& value) { m_requestIdHasBeenSet = true; m_requestId = value; } /** *

The identifier for tracking the request operation that is generated by the * universally unique identifier (UUID) workflow.

*/ inline void SetRequestId(Aws::String&& value) { m_requestIdHasBeenSet = true; m_requestId = std::move(value); } /** *

The identifier for tracking the request operation that is generated by the * universally unique identifier (UUID) workflow.

*/ inline void SetRequestId(const char* value) { m_requestIdHasBeenSet = true; m_requestId.assign(value); } /** *

The identifier for tracking the request operation that is generated by the * universally unique identifier (UUID) workflow.

*/ inline AccountAssignmentOperationStatusMetadata& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} /** *

The identifier for tracking the request operation that is generated by the * universally unique identifier (UUID) workflow.

*/ inline AccountAssignmentOperationStatusMetadata& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} /** *

The identifier for tracking the request operation that is generated by the * universally unique identifier (UUID) workflow.

*/ inline AccountAssignmentOperationStatusMetadata& WithRequestId(const char* value) { SetRequestId(value); return *this;} /** *

The date that the permission set was created.

*/ inline const Aws::Utils::DateTime& GetCreatedDate() const{ return m_createdDate; } /** *

The date that the permission set was created.

*/ inline bool CreatedDateHasBeenSet() const { return m_createdDateHasBeenSet; } /** *

The date that the permission set was created.

*/ inline void SetCreatedDate(const Aws::Utils::DateTime& value) { m_createdDateHasBeenSet = true; m_createdDate = value; } /** *

The date that the permission set was created.

*/ inline void SetCreatedDate(Aws::Utils::DateTime&& value) { m_createdDateHasBeenSet = true; m_createdDate = std::move(value); } /** *

The date that the permission set was created.

*/ inline AccountAssignmentOperationStatusMetadata& WithCreatedDate(const Aws::Utils::DateTime& value) { SetCreatedDate(value); return *this;} /** *

The date that the permission set was created.

*/ inline AccountAssignmentOperationStatusMetadata& WithCreatedDate(Aws::Utils::DateTime&& value) { SetCreatedDate(std::move(value)); return *this;} private: StatusValues m_status; bool m_statusHasBeenSet = false; Aws::String m_requestId; bool m_requestIdHasBeenSet = false; Aws::Utils::DateTime m_createdDate; bool m_createdDateHasBeenSet = false; }; } // namespace Model } // namespace SSOAdmin } // namespace Aws