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

TBD

See Also:

AWS * API Reference

*/ class CreateApplicationResult { public: AWS_KINESISANALYTICS_API CreateApplicationResult(); AWS_KINESISANALYTICS_API CreateApplicationResult(const Aws::AmazonWebServiceResult& result); AWS_KINESISANALYTICS_API CreateApplicationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

In response to your CreateApplication request, Amazon Kinesis * Analytics returns a response with a summary of the application it created, * including the application Amazon Resource Name (ARN), name, and status.

*/ inline const ApplicationSummary& GetApplicationSummary() const{ return m_applicationSummary; } /** *

In response to your CreateApplication request, Amazon Kinesis * Analytics returns a response with a summary of the application it created, * including the application Amazon Resource Name (ARN), name, and status.

*/ inline void SetApplicationSummary(const ApplicationSummary& value) { m_applicationSummary = value; } /** *

In response to your CreateApplication request, Amazon Kinesis * Analytics returns a response with a summary of the application it created, * including the application Amazon Resource Name (ARN), name, and status.

*/ inline void SetApplicationSummary(ApplicationSummary&& value) { m_applicationSummary = std::move(value); } /** *

In response to your CreateApplication request, Amazon Kinesis * Analytics returns a response with a summary of the application it created, * including the application Amazon Resource Name (ARN), name, and status.

*/ inline CreateApplicationResult& WithApplicationSummary(const ApplicationSummary& value) { SetApplicationSummary(value); return *this;} /** *

In response to your CreateApplication request, Amazon Kinesis * Analytics returns a response with a summary of the application it created, * including the application Amazon Resource Name (ARN), name, and status.

*/ inline CreateApplicationResult& WithApplicationSummary(ApplicationSummary&& value) { SetApplicationSummary(std::move(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 CreateApplicationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateApplicationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateApplicationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ApplicationSummary m_applicationSummary; Aws::String m_requestId; }; } // namespace Model } // namespace KinesisAnalytics } // namespace Aws