/** * 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 CreateFlowDefinitionResult { public: CreateFlowDefinitionResult(); CreateFlowDefinitionResult(const Aws::AmazonWebServiceResult& result); CreateFlowDefinitionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the flow definition you create.

*/ inline const Aws::String& GetFlowDefinitionArn() const{ return m_flowDefinitionArn; } /** *

The Amazon Resource Name (ARN) of the flow definition you create.

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

The Amazon Resource Name (ARN) of the flow definition you create.

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

The Amazon Resource Name (ARN) of the flow definition you create.

*/ inline void SetFlowDefinitionArn(const char* value) { m_flowDefinitionArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the flow definition you create.

*/ inline CreateFlowDefinitionResult& WithFlowDefinitionArn(const Aws::String& value) { SetFlowDefinitionArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the flow definition you create.

*/ inline CreateFlowDefinitionResult& WithFlowDefinitionArn(Aws::String&& value) { SetFlowDefinitionArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the flow definition you create.

*/ inline CreateFlowDefinitionResult& WithFlowDefinitionArn(const char* value) { SetFlowDefinitionArn(value); return *this;} private: Aws::String m_flowDefinitionArn; }; } // namespace Model } // namespace SageMaker } // namespace Aws