/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Retrieves information about each principal that is allowed to access a given
* Amazon OpenSearch Service domain through the use of an interface VPC
* endpointSee Also:
AWS
* API Reference
The name of the OpenSearch Service domain to retrieve access information * for.
*/ inline const Aws::String& GetDomainName() const{ return m_domainName; } /** *The name of the OpenSearch Service domain to retrieve access information * for.
*/ inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; } /** *The name of the OpenSearch Service domain to retrieve access information * for.
*/ inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; } /** *The name of the OpenSearch Service domain to retrieve access information * for.
*/ inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); } /** *The name of the OpenSearch Service domain to retrieve access information * for.
*/ inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); } /** *The name of the OpenSearch Service domain to retrieve access information * for.
*/ inline ListVpcEndpointAccessRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;} /** *The name of the OpenSearch Service domain to retrieve access information * for.
*/ inline ListVpcEndpointAccessRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;} /** *The name of the OpenSearch Service domain to retrieve access information * for.
*/ inline ListVpcEndpointAccessRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;} /** *Provides an identifier to allow retrieval of paginated results.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *Provides an identifier to allow retrieval of paginated results.
*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *Provides an identifier to allow retrieval of paginated results.
*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *Provides an identifier to allow retrieval of paginated results.
*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *Provides an identifier to allow retrieval of paginated results.
*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *Provides an identifier to allow retrieval of paginated results.
*/ inline ListVpcEndpointAccessRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *Provides an identifier to allow retrieval of paginated results.
*/ inline ListVpcEndpointAccessRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *Provides an identifier to allow retrieval of paginated results.
*/ inline ListVpcEndpointAccessRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_domainName; bool m_domainNameHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace ElasticsearchService } // namespace Aws