This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-route53resolver/include/aws/route53resolver/model/GetResolverEndpointRequest.h

86 lines
3.0 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/route53resolver/Route53Resolver_EXPORTS.h>
#include <aws/route53resolver/Route53ResolverRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Route53Resolver
{
namespace Model
{
/**
*/
class AWS_ROUTE53RESOLVER_API GetResolverEndpointRequest : public Route53ResolverRequest
{
public:
GetResolverEndpointRequest();
// 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 "GetResolverEndpoint"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The ID of the resolver endpoint that you want to get information about.</p>
*/
inline const Aws::String& GetResolverEndpointId() const{ return m_resolverEndpointId; }
/**
* <p>The ID of the resolver endpoint that you want to get information about.</p>
*/
inline bool ResolverEndpointIdHasBeenSet() const { return m_resolverEndpointIdHasBeenSet; }
/**
* <p>The ID of the resolver endpoint that you want to get information about.</p>
*/
inline void SetResolverEndpointId(const Aws::String& value) { m_resolverEndpointIdHasBeenSet = true; m_resolverEndpointId = value; }
/**
* <p>The ID of the resolver endpoint that you want to get information about.</p>
*/
inline void SetResolverEndpointId(Aws::String&& value) { m_resolverEndpointIdHasBeenSet = true; m_resolverEndpointId = std::move(value); }
/**
* <p>The ID of the resolver endpoint that you want to get information about.</p>
*/
inline void SetResolverEndpointId(const char* value) { m_resolverEndpointIdHasBeenSet = true; m_resolverEndpointId.assign(value); }
/**
* <p>The ID of the resolver endpoint that you want to get information about.</p>
*/
inline GetResolverEndpointRequest& WithResolverEndpointId(const Aws::String& value) { SetResolverEndpointId(value); return *this;}
/**
* <p>The ID of the resolver endpoint that you want to get information about.</p>
*/
inline GetResolverEndpointRequest& WithResolverEndpointId(Aws::String&& value) { SetResolverEndpointId(std::move(value)); return *this;}
/**
* <p>The ID of the resolver endpoint that you want to get information about.</p>
*/
inline GetResolverEndpointRequest& WithResolverEndpointId(const char* value) { SetResolverEndpointId(value); return *this;}
private:
Aws::String m_resolverEndpointId;
bool m_resolverEndpointIdHasBeenSet;
};
} // namespace Model
} // namespace Route53Resolver
} // namespace Aws