/** * 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 KinesisAnalyticsV2 { namespace Model { class DeleteApplicationReferenceDataSourceResult { public: AWS_KINESISANALYTICSV2_API DeleteApplicationReferenceDataSourceResult(); AWS_KINESISANALYTICSV2_API DeleteApplicationReferenceDataSourceResult(const Aws::AmazonWebServiceResult& result); AWS_KINESISANALYTICSV2_API DeleteApplicationReferenceDataSourceResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The application Amazon Resource Name (ARN).

*/ inline const Aws::String& GetApplicationARN() const{ return m_applicationARN; } /** *

The application Amazon Resource Name (ARN).

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

The application Amazon Resource Name (ARN).

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

The application Amazon Resource Name (ARN).

*/ inline void SetApplicationARN(const char* value) { m_applicationARN.assign(value); } /** *

The application Amazon Resource Name (ARN).

*/ inline DeleteApplicationReferenceDataSourceResult& WithApplicationARN(const Aws::String& value) { SetApplicationARN(value); return *this;} /** *

The application Amazon Resource Name (ARN).

*/ inline DeleteApplicationReferenceDataSourceResult& WithApplicationARN(Aws::String&& value) { SetApplicationARN(std::move(value)); return *this;} /** *

The application Amazon Resource Name (ARN).

*/ inline DeleteApplicationReferenceDataSourceResult& WithApplicationARN(const char* value) { SetApplicationARN(value); return *this;} /** *

The updated version ID of the application.

*/ inline long long GetApplicationVersionId() const{ return m_applicationVersionId; } /** *

The updated version ID of the application.

*/ inline void SetApplicationVersionId(long long value) { m_applicationVersionId = value; } /** *

The updated version ID of the application.

*/ inline DeleteApplicationReferenceDataSourceResult& WithApplicationVersionId(long long value) { SetApplicationVersionId(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 DeleteApplicationReferenceDataSourceResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteApplicationReferenceDataSourceResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteApplicationReferenceDataSourceResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_applicationARN; long long m_applicationVersionId; Aws::String m_requestId; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws