/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A complex type that lists the name servers in a delegation set, as well as
* the CallerReference
and the ID
for the delegation
* set.See Also:
AWS
* API Reference
The ID that Amazon Route 53 assigns to a reusable delegation set.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *The ID that Amazon Route 53 assigns to a reusable delegation set.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *The ID that Amazon Route 53 assigns to a reusable delegation set.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *The ID that Amazon Route 53 assigns to a reusable delegation set.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *The ID that Amazon Route 53 assigns to a reusable delegation set.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *The ID that Amazon Route 53 assigns to a reusable delegation set.
*/ inline DelegationSet& WithId(const Aws::String& value) { SetId(value); return *this;} /** *The ID that Amazon Route 53 assigns to a reusable delegation set.
*/ inline DelegationSet& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *The ID that Amazon Route 53 assigns to a reusable delegation set.
*/ inline DelegationSet& WithId(const char* value) { SetId(value); return *this;} /** *The value that you specified for CallerReference
when you
* created the reusable delegation set.
The value that you specified for CallerReference
when you
* created the reusable delegation set.
The value that you specified for CallerReference
when you
* created the reusable delegation set.
The value that you specified for CallerReference
when you
* created the reusable delegation set.
The value that you specified for CallerReference
when you
* created the reusable delegation set.
The value that you specified for CallerReference
when you
* created the reusable delegation set.
The value that you specified for CallerReference
when you
* created the reusable delegation set.
The value that you specified for CallerReference
when you
* created the reusable delegation set.
A complex type that contains a list of the authoritative name servers for a * hosted zone or for a reusable delegation set.
*/ inline const Aws::VectorA complex type that contains a list of the authoritative name servers for a * hosted zone or for a reusable delegation set.
*/ inline bool NameServersHasBeenSet() const { return m_nameServersHasBeenSet; } /** *A complex type that contains a list of the authoritative name servers for a * hosted zone or for a reusable delegation set.
*/ inline void SetNameServers(const Aws::VectorA complex type that contains a list of the authoritative name servers for a * hosted zone or for a reusable delegation set.
*/ inline void SetNameServers(Aws::VectorA complex type that contains a list of the authoritative name servers for a * hosted zone or for a reusable delegation set.
*/ inline DelegationSet& WithNameServers(const Aws::VectorA complex type that contains a list of the authoritative name servers for a * hosted zone or for a reusable delegation set.
*/ inline DelegationSet& WithNameServers(Aws::VectorA complex type that contains a list of the authoritative name servers for a * hosted zone or for a reusable delegation set.
*/ inline DelegationSet& AddNameServers(const Aws::String& value) { m_nameServersHasBeenSet = true; m_nameServers.push_back(value); return *this; } /** *A complex type that contains a list of the authoritative name servers for a * hosted zone or for a reusable delegation set.
*/ inline DelegationSet& AddNameServers(Aws::String&& value) { m_nameServersHasBeenSet = true; m_nameServers.push_back(std::move(value)); return *this; } /** *A complex type that contains a list of the authoritative name servers for a * hosted zone or for a reusable delegation set.
*/ inline DelegationSet& AddNameServers(const char* value) { m_nameServersHasBeenSet = true; m_nameServers.push_back(value); return *this; } private: Aws::String m_id; bool m_idHasBeenSet = false; Aws::String m_callerReference; bool m_callerReferenceHasBeenSet = false; Aws::Vector