/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The support case ID returned by a successful completion of the
* CreateCase operation.See Also:
AWS
* API Reference
The support case ID requested or returned in the call. The case ID is an * alphanumeric string in the following format: * case-12345678910-2013-c4c1d2bf33c5cf47
*/ inline const Aws::String& GetCaseId() const{ return m_caseId; } /** *The support case ID requested or returned in the call. The case ID is an * alphanumeric string in the following format: * case-12345678910-2013-c4c1d2bf33c5cf47
*/ inline void SetCaseId(const Aws::String& value) { m_caseId = value; } /** *The support case ID requested or returned in the call. The case ID is an * alphanumeric string in the following format: * case-12345678910-2013-c4c1d2bf33c5cf47
*/ inline void SetCaseId(Aws::String&& value) { m_caseId = std::move(value); } /** *The support case ID requested or returned in the call. The case ID is an * alphanumeric string in the following format: * case-12345678910-2013-c4c1d2bf33c5cf47
*/ inline void SetCaseId(const char* value) { m_caseId.assign(value); } /** *The support case ID requested or returned in the call. The case ID is an * alphanumeric string in the following format: * case-12345678910-2013-c4c1d2bf33c5cf47
*/ inline CreateCaseResult& WithCaseId(const Aws::String& value) { SetCaseId(value); return *this;} /** *The support case ID requested or returned in the call. The case ID is an * alphanumeric string in the following format: * case-12345678910-2013-c4c1d2bf33c5cf47
*/ inline CreateCaseResult& WithCaseId(Aws::String&& value) { SetCaseId(std::move(value)); return *this;} /** *The support case ID requested or returned in the call. The case ID is an * alphanumeric string in the following format: * case-12345678910-2013-c4c1d2bf33c5cf47
*/ inline CreateCaseResult& WithCaseId(const char* value) { SetCaseId(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreateCaseResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateCaseResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateCaseResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_caseId; Aws::String m_requestId; }; } // namespace Model } // namespace Support } // namespace Aws