/**
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */
#pragma once
#include  An object that contains information about your account details
   * review.See Also:
   AWS
   * API Reference
The status of the latest review of your account. The status can be one of the * following:
 PENDING – We have received your appeal
     * and are in the process of reviewing it.
 GRANTED
     * – Your appeal has been reviewed and your production access has been granted.
 DENIED – Your appeal has been reviewed and your
     * production access has been denied.
 FAILED – An
     * internal error occurred and we didn't receive your appeal. You can submit your
     * appeal again.
The status of the latest review of your account. The status can be one of the * following:
 PENDING – We have received your appeal
     * and are in the process of reviewing it.
 GRANTED
     * – Your appeal has been reviewed and your production access has been granted.
 DENIED – Your appeal has been reviewed and your
     * production access has been denied.
 FAILED – An
     * internal error occurred and we didn't receive your appeal. You can submit your
     * appeal again.
The status of the latest review of your account. The status can be one of the * following:
 PENDING – We have received your appeal
     * and are in the process of reviewing it.
 GRANTED
     * – Your appeal has been reviewed and your production access has been granted.
 DENIED – Your appeal has been reviewed and your
     * production access has been denied.
 FAILED – An
     * internal error occurred and we didn't receive your appeal. You can submit your
     * appeal again.
The status of the latest review of your account. The status can be one of the * following:
 PENDING – We have received your appeal
     * and are in the process of reviewing it.
 GRANTED
     * – Your appeal has been reviewed and your production access has been granted.
 DENIED – Your appeal has been reviewed and your
     * production access has been denied.
 FAILED – An
     * internal error occurred and we didn't receive your appeal. You can submit your
     * appeal again.
The status of the latest review of your account. The status can be one of the * following:
 PENDING – We have received your appeal
     * and are in the process of reviewing it.
 GRANTED
     * – Your appeal has been reviewed and your production access has been granted.
 DENIED – Your appeal has been reviewed and your
     * production access has been denied.
 FAILED – An
     * internal error occurred and we didn't receive your appeal. You can submit your
     * appeal again.
The status of the latest review of your account. The status can be one of the * following:
 PENDING – We have received your appeal
     * and are in the process of reviewing it.
 GRANTED
     * – Your appeal has been reviewed and your production access has been granted.
 DENIED – Your appeal has been reviewed and your
     * production access has been denied.
 FAILED – An
     * internal error occurred and we didn't receive your appeal. You can submit your
     * appeal again.
The associated support center case ID (if any).
*/ inline const Aws::String& GetCaseId() const{ return m_caseId; } /** *The associated support center case ID (if any).
*/ inline bool CaseIdHasBeenSet() const { return m_caseIdHasBeenSet; } /** *The associated support center case ID (if any).
*/ inline void SetCaseId(const Aws::String& value) { m_caseIdHasBeenSet = true; m_caseId = value; } /** *The associated support center case ID (if any).
*/ inline void SetCaseId(Aws::String&& value) { m_caseIdHasBeenSet = true; m_caseId = std::move(value); } /** *The associated support center case ID (if any).
*/ inline void SetCaseId(const char* value) { m_caseIdHasBeenSet = true; m_caseId.assign(value); } /** *The associated support center case ID (if any).
*/ inline ReviewDetails& WithCaseId(const Aws::String& value) { SetCaseId(value); return *this;} /** *The associated support center case ID (if any).
*/ inline ReviewDetails& WithCaseId(Aws::String&& value) { SetCaseId(std::move(value)); return *this;} /** *The associated support center case ID (if any).
*/ inline ReviewDetails& WithCaseId(const char* value) { SetCaseId(value); return *this;} private: ReviewStatus m_status; bool m_statusHasBeenSet = false; Aws::String m_caseId; bool m_caseIdHasBeenSet = false; }; } // namespace Model } // namespace SESV2 } // namespace Aws