/** * 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 Schemas { namespace Model { /** */ class DeleteDiscovererRequest : public SchemasRequest { public: AWS_SCHEMAS_API DeleteDiscovererRequest(); // 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 "DeleteDiscoverer"; } AWS_SCHEMAS_API Aws::String SerializePayload() const override; /** *

The ID of the discoverer.

*/ inline const Aws::String& GetDiscovererId() const{ return m_discovererId; } /** *

The ID of the discoverer.

*/ inline bool DiscovererIdHasBeenSet() const { return m_discovererIdHasBeenSet; } /** *

The ID of the discoverer.

*/ inline void SetDiscovererId(const Aws::String& value) { m_discovererIdHasBeenSet = true; m_discovererId = value; } /** *

The ID of the discoverer.

*/ inline void SetDiscovererId(Aws::String&& value) { m_discovererIdHasBeenSet = true; m_discovererId = std::move(value); } /** *

The ID of the discoverer.

*/ inline void SetDiscovererId(const char* value) { m_discovererIdHasBeenSet = true; m_discovererId.assign(value); } /** *

The ID of the discoverer.

*/ inline DeleteDiscovererRequest& WithDiscovererId(const Aws::String& value) { SetDiscovererId(value); return *this;} /** *

The ID of the discoverer.

*/ inline DeleteDiscovererRequest& WithDiscovererId(Aws::String&& value) { SetDiscovererId(std::move(value)); return *this;} /** *

The ID of the discoverer.

*/ inline DeleteDiscovererRequest& WithDiscovererId(const char* value) { SetDiscovererId(value); return *this;} private: Aws::String m_discovererId; bool m_discovererIdHasBeenSet = false; }; } // namespace Model } // namespace Schemas } // namespace Aws