/** * 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 KinesisAnalytics { namespace Model { /** *

TBD

See Also:

AWS * API Reference

*/ class AWS_KINESISANALYTICS_API CreateApplicationResult { public: CreateApplicationResult(); CreateApplicationResult(const Aws::AmazonWebServiceResult& result); 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;} private: ApplicationSummary m_applicationSummary; }; } // namespace Model } // namespace KinesisAnalytics } // namespace Aws