/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
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