/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Container for request parameters to DissociatePackage
* operation. See Also:
AWS
* API Reference
Internal ID of the package that you want to associate with a domain. Use
* DescribePackages
to find this value.
Internal ID of the package that you want to associate with a domain. Use
* DescribePackages
to find this value.
Internal ID of the package that you want to associate with a domain. Use
* DescribePackages
to find this value.
Internal ID of the package that you want to associate with a domain. Use
* DescribePackages
to find this value.
Internal ID of the package that you want to associate with a domain. Use
* DescribePackages
to find this value.
Internal ID of the package that you want to associate with a domain. Use
* DescribePackages
to find this value.
Internal ID of the package that you want to associate with a domain. Use
* DescribePackages
to find this value.
Internal ID of the package that you want to associate with a domain. Use
* DescribePackages
to find this value.
Name of the domain that you want to associate the package with.
*/ inline const Aws::String& GetDomainName() const{ return m_domainName; } /** *Name of the domain that you want to associate the package with.
*/ inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; } /** *Name of the domain that you want to associate the package with.
*/ inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; } /** *Name of the domain that you want to associate the package with.
*/ inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); } /** *Name of the domain that you want to associate the package with.
*/ inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); } /** *Name of the domain that you want to associate the package with.
*/ inline DissociatePackageRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;} /** *Name of the domain that you want to associate the package with.
*/ inline DissociatePackageRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;} /** *Name of the domain that you want to associate the package with.
*/ inline DissociatePackageRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;} private: Aws::String m_packageID; bool m_packageIDHasBeenSet = false; Aws::String m_domainName; bool m_domainNameHasBeenSet = false; }; } // namespace Model } // namespace ElasticsearchService } // namespace Aws