/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Container for the request parameters to the DissociatePackage
* operation.See Also:
AWS
* API Reference
Internal ID of the package to dissociate from the domain. Use
* ListPackagesForDomain
to find this value.
Internal ID of the package to dissociate from the domain. Use
* ListPackagesForDomain
to find this value.
Internal ID of the package to dissociate from the domain. Use
* ListPackagesForDomain
to find this value.
Internal ID of the package to dissociate from the domain. Use
* ListPackagesForDomain
to find this value.
Internal ID of the package to dissociate from the domain. Use
* ListPackagesForDomain
to find this value.
Internal ID of the package to dissociate from the domain. Use
* ListPackagesForDomain
to find this value.
Internal ID of the package to dissociate from the domain. Use
* ListPackagesForDomain
to find this value.
Internal ID of the package to dissociate from the domain. Use
* ListPackagesForDomain
to find this value.
Name of the domain to dissociate the package from.
*/ inline const Aws::String& GetDomainName() const{ return m_domainName; } /** *Name of the domain to dissociate the package from.
*/ inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; } /** *Name of the domain to dissociate the package from.
*/ inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; } /** *Name of the domain to dissociate the package from.
*/ inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); } /** *Name of the domain to dissociate the package from.
*/ inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); } /** *Name of the domain to dissociate the package from.
*/ inline DissociatePackageRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;} /** *Name of the domain to dissociate the package from.
*/ inline DissociatePackageRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;} /** *Name of the domain to dissociate the package from.
*/ 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 OpenSearchService } // namespace Aws