/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace SageMaker { namespace Model { /** */ class DescribeActionRequest : public SageMakerRequest { public: AWS_SAGEMAKER_API DescribeActionRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeAction"; } AWS_SAGEMAKER_API Aws::String SerializePayload() const override; AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the action to describe.

*/ inline const Aws::String& GetActionName() const{ return m_actionName; } /** *

The name of the action to describe.

*/ inline bool ActionNameHasBeenSet() const { return m_actionNameHasBeenSet; } /** *

The name of the action to describe.

*/ inline void SetActionName(const Aws::String& value) { m_actionNameHasBeenSet = true; m_actionName = value; } /** *

The name of the action to describe.

*/ inline void SetActionName(Aws::String&& value) { m_actionNameHasBeenSet = true; m_actionName = std::move(value); } /** *

The name of the action to describe.

*/ inline void SetActionName(const char* value) { m_actionNameHasBeenSet = true; m_actionName.assign(value); } /** *

The name of the action to describe.

*/ inline DescribeActionRequest& WithActionName(const Aws::String& value) { SetActionName(value); return *this;} /** *

The name of the action to describe.

*/ inline DescribeActionRequest& WithActionName(Aws::String&& value) { SetActionName(std::move(value)); return *this;} /** *

The name of the action to describe.

*/ inline DescribeActionRequest& WithActionName(const char* value) { SetActionName(value); return *this;} private: Aws::String m_actionName; bool m_actionNameHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws