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

The unique identifier for FinSpace environment that you created.

*/ inline const Aws::String& GetEnvironmentId() const{ return m_environmentId; } /** *

The unique identifier for FinSpace environment that you created.

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

The unique identifier for FinSpace environment that you created.

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

The unique identifier for FinSpace environment that you created.

*/ inline void SetEnvironmentId(const char* value) { m_environmentId.assign(value); } /** *

The unique identifier for FinSpace environment that you created.

*/ inline CreateEnvironmentResult& WithEnvironmentId(const Aws::String& value) { SetEnvironmentId(value); return *this;} /** *

The unique identifier for FinSpace environment that you created.

*/ inline CreateEnvironmentResult& WithEnvironmentId(Aws::String&& value) { SetEnvironmentId(std::move(value)); return *this;} /** *

The unique identifier for FinSpace environment that you created.

*/ inline CreateEnvironmentResult& WithEnvironmentId(const char* value) { SetEnvironmentId(value); return *this;} /** *

The Amazon Resource Name (ARN) of the FinSpace environment that you * created.

*/ inline const Aws::String& GetEnvironmentArn() const{ return m_environmentArn; } /** *

The Amazon Resource Name (ARN) of the FinSpace environment that you * created.

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

The Amazon Resource Name (ARN) of the FinSpace environment that you * created.

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

The Amazon Resource Name (ARN) of the FinSpace environment that you * created.

*/ inline void SetEnvironmentArn(const char* value) { m_environmentArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the FinSpace environment that you * created.

*/ inline CreateEnvironmentResult& WithEnvironmentArn(const Aws::String& value) { SetEnvironmentArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the FinSpace environment that you * created.

*/ inline CreateEnvironmentResult& WithEnvironmentArn(Aws::String&& value) { SetEnvironmentArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the FinSpace environment that you * created.

*/ inline CreateEnvironmentResult& WithEnvironmentArn(const char* value) { SetEnvironmentArn(value); return *this;} /** *

The sign-in URL for the web application of the FinSpace environment you * created.

*/ inline const Aws::String& GetEnvironmentUrl() const{ return m_environmentUrl; } /** *

The sign-in URL for the web application of the FinSpace environment you * created.

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

The sign-in URL for the web application of the FinSpace environment you * created.

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

The sign-in URL for the web application of the FinSpace environment you * created.

*/ inline void SetEnvironmentUrl(const char* value) { m_environmentUrl.assign(value); } /** *

The sign-in URL for the web application of the FinSpace environment you * created.

*/ inline CreateEnvironmentResult& WithEnvironmentUrl(const Aws::String& value) { SetEnvironmentUrl(value); return *this;} /** *

The sign-in URL for the web application of the FinSpace environment you * created.

*/ inline CreateEnvironmentResult& WithEnvironmentUrl(Aws::String&& value) { SetEnvironmentUrl(std::move(value)); return *this;} /** *

The sign-in URL for the web application of the FinSpace environment you * created.

*/ inline CreateEnvironmentResult& WithEnvironmentUrl(const char* value) { SetEnvironmentUrl(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 CreateEnvironmentResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateEnvironmentResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateEnvironmentResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_environmentId; Aws::String m_environmentArn; Aws::String m_environmentUrl; Aws::String m_requestId; }; } // namespace Model } // namespace finspace } // namespace Aws