/** * 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 Glue { namespace Model { /** */ class GetMLTransformRequest : public GlueRequest { public: AWS_GLUE_API GetMLTransformRequest(); // 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 "GetMLTransform"; } AWS_GLUE_API Aws::String SerializePayload() const override; AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The unique identifier of the transform, generated at the time that the * transform was created.

*/ inline const Aws::String& GetTransformId() const{ return m_transformId; } /** *

The unique identifier of the transform, generated at the time that the * transform was created.

*/ inline bool TransformIdHasBeenSet() const { return m_transformIdHasBeenSet; } /** *

The unique identifier of the transform, generated at the time that the * transform was created.

*/ inline void SetTransformId(const Aws::String& value) { m_transformIdHasBeenSet = true; m_transformId = value; } /** *

The unique identifier of the transform, generated at the time that the * transform was created.

*/ inline void SetTransformId(Aws::String&& value) { m_transformIdHasBeenSet = true; m_transformId = std::move(value); } /** *

The unique identifier of the transform, generated at the time that the * transform was created.

*/ inline void SetTransformId(const char* value) { m_transformIdHasBeenSet = true; m_transformId.assign(value); } /** *

The unique identifier of the transform, generated at the time that the * transform was created.

*/ inline GetMLTransformRequest& WithTransformId(const Aws::String& value) { SetTransformId(value); return *this;} /** *

The unique identifier of the transform, generated at the time that the * transform was created.

*/ inline GetMLTransformRequest& WithTransformId(Aws::String&& value) { SetTransformId(std::move(value)); return *this;} /** *

The unique identifier of the transform, generated at the time that the * transform was created.

*/ inline GetMLTransformRequest& WithTransformId(const char* value) { SetTransformId(value); return *this;} private: Aws::String m_transformId; bool m_transformIdHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws