/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace LexModelsV2 { namespace Model { class GetTestExecutionArtifactsUrlResult { public: AWS_LEXMODELSV2_API GetTestExecutionArtifactsUrlResult(); AWS_LEXMODELSV2_API GetTestExecutionArtifactsUrlResult(const Aws::AmazonWebServiceResult& result); AWS_LEXMODELSV2_API GetTestExecutionArtifactsUrlResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The unique identifier of the completed test execution.

*/ inline const Aws::String& GetTestExecutionId() const{ return m_testExecutionId; } /** *

The unique identifier of the completed test execution.

*/ inline void SetTestExecutionId(const Aws::String& value) { m_testExecutionId = value; } /** *

The unique identifier of the completed test execution.

*/ inline void SetTestExecutionId(Aws::String&& value) { m_testExecutionId = std::move(value); } /** *

The unique identifier of the completed test execution.

*/ inline void SetTestExecutionId(const char* value) { m_testExecutionId.assign(value); } /** *

The unique identifier of the completed test execution.

*/ inline GetTestExecutionArtifactsUrlResult& WithTestExecutionId(const Aws::String& value) { SetTestExecutionId(value); return *this;} /** *

The unique identifier of the completed test execution.

*/ inline GetTestExecutionArtifactsUrlResult& WithTestExecutionId(Aws::String&& value) { SetTestExecutionId(std::move(value)); return *this;} /** *

The unique identifier of the completed test execution.

*/ inline GetTestExecutionArtifactsUrlResult& WithTestExecutionId(const char* value) { SetTestExecutionId(value); return *this;} /** *

The pre-signed Amazon S3 URL to download completed test execution.

*/ inline const Aws::String& GetDownloadArtifactsUrl() const{ return m_downloadArtifactsUrl; } /** *

The pre-signed Amazon S3 URL to download completed test execution.

*/ inline void SetDownloadArtifactsUrl(const Aws::String& value) { m_downloadArtifactsUrl = value; } /** *

The pre-signed Amazon S3 URL to download completed test execution.

*/ inline void SetDownloadArtifactsUrl(Aws::String&& value) { m_downloadArtifactsUrl = std::move(value); } /** *

The pre-signed Amazon S3 URL to download completed test execution.

*/ inline void SetDownloadArtifactsUrl(const char* value) { m_downloadArtifactsUrl.assign(value); } /** *

The pre-signed Amazon S3 URL to download completed test execution.

*/ inline GetTestExecutionArtifactsUrlResult& WithDownloadArtifactsUrl(const Aws::String& value) { SetDownloadArtifactsUrl(value); return *this;} /** *

The pre-signed Amazon S3 URL to download completed test execution.

*/ inline GetTestExecutionArtifactsUrlResult& WithDownloadArtifactsUrl(Aws::String&& value) { SetDownloadArtifactsUrl(std::move(value)); return *this;} /** *

The pre-signed Amazon S3 URL to download completed test execution.

*/ inline GetTestExecutionArtifactsUrlResult& WithDownloadArtifactsUrl(const char* value) { SetDownloadArtifactsUrl(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 GetTestExecutionArtifactsUrlResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetTestExecutionArtifactsUrlResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetTestExecutionArtifactsUrlResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_testExecutionId; Aws::String m_downloadArtifactsUrl; Aws::String m_requestId; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws