/** * 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 GroundStation { namespace Model { /** *

See Also:

AWS * API Reference

*/ class DeleteDataflowEndpointGroupRequest : public GroundStationRequest { public: AWS_GROUNDSTATION_API DeleteDataflowEndpointGroupRequest(); // 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 "DeleteDataflowEndpointGroup"; } AWS_GROUNDSTATION_API Aws::String SerializePayload() const override; /** *

UUID of a dataflow endpoint group.

*/ inline const Aws::String& GetDataflowEndpointGroupId() const{ return m_dataflowEndpointGroupId; } /** *

UUID of a dataflow endpoint group.

*/ inline bool DataflowEndpointGroupIdHasBeenSet() const { return m_dataflowEndpointGroupIdHasBeenSet; } /** *

UUID of a dataflow endpoint group.

*/ inline void SetDataflowEndpointGroupId(const Aws::String& value) { m_dataflowEndpointGroupIdHasBeenSet = true; m_dataflowEndpointGroupId = value; } /** *

UUID of a dataflow endpoint group.

*/ inline void SetDataflowEndpointGroupId(Aws::String&& value) { m_dataflowEndpointGroupIdHasBeenSet = true; m_dataflowEndpointGroupId = std::move(value); } /** *

UUID of a dataflow endpoint group.

*/ inline void SetDataflowEndpointGroupId(const char* value) { m_dataflowEndpointGroupIdHasBeenSet = true; m_dataflowEndpointGroupId.assign(value); } /** *

UUID of a dataflow endpoint group.

*/ inline DeleteDataflowEndpointGroupRequest& WithDataflowEndpointGroupId(const Aws::String& value) { SetDataflowEndpointGroupId(value); return *this;} /** *

UUID of a dataflow endpoint group.

*/ inline DeleteDataflowEndpointGroupRequest& WithDataflowEndpointGroupId(Aws::String&& value) { SetDataflowEndpointGroupId(std::move(value)); return *this;} /** *

UUID of a dataflow endpoint group.

*/ inline DeleteDataflowEndpointGroupRequest& WithDataflowEndpointGroupId(const char* value) { SetDataflowEndpointGroupId(value); return *this;} private: Aws::String m_dataflowEndpointGroupId; bool m_dataflowEndpointGroupIdHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws