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

The App's Amazon Resource Name (ARN).

*/ inline const Aws::String& GetAppArn() const{ return m_appArn; } /** *

The App's Amazon Resource Name (ARN).

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

The App's Amazon Resource Name (ARN).

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

The App's Amazon Resource Name (ARN).

*/ inline void SetAppArn(const char* value) { m_appArn.assign(value); } /** *

The App's Amazon Resource Name (ARN).

*/ inline CreateAppResult& WithAppArn(const Aws::String& value) { SetAppArn(value); return *this;} /** *

The App's Amazon Resource Name (ARN).

*/ inline CreateAppResult& WithAppArn(Aws::String&& value) { SetAppArn(std::move(value)); return *this;} /** *

The App's Amazon Resource Name (ARN).

*/ inline CreateAppResult& WithAppArn(const char* value) { SetAppArn(value); return *this;} private: Aws::String m_appArn; }; } // namespace Model } // namespace SageMaker } // namespace Aws