/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The request object of DNS aliases to disassociate from an Amazon FSx for
* Windows File Server file system.See Also:
AWS
* API Reference
Specifies the file system from which to disassociate the DNS aliases.
*/ inline const Aws::String& GetFileSystemId() const{ return m_fileSystemId; } /** *Specifies the file system from which to disassociate the DNS aliases.
*/ inline bool FileSystemIdHasBeenSet() const { return m_fileSystemIdHasBeenSet; } /** *Specifies the file system from which to disassociate the DNS aliases.
*/ inline void SetFileSystemId(const Aws::String& value) { m_fileSystemIdHasBeenSet = true; m_fileSystemId = value; } /** *Specifies the file system from which to disassociate the DNS aliases.
*/ inline void SetFileSystemId(Aws::String&& value) { m_fileSystemIdHasBeenSet = true; m_fileSystemId = std::move(value); } /** *Specifies the file system from which to disassociate the DNS aliases.
*/ inline void SetFileSystemId(const char* value) { m_fileSystemIdHasBeenSet = true; m_fileSystemId.assign(value); } /** *Specifies the file system from which to disassociate the DNS aliases.
*/ inline DisassociateFileSystemAliasesRequest& WithFileSystemId(const Aws::String& value) { SetFileSystemId(value); return *this;} /** *Specifies the file system from which to disassociate the DNS aliases.
*/ inline DisassociateFileSystemAliasesRequest& WithFileSystemId(Aws::String&& value) { SetFileSystemId(std::move(value)); return *this;} /** *Specifies the file system from which to disassociate the DNS aliases.
*/ inline DisassociateFileSystemAliasesRequest& WithFileSystemId(const char* value) { SetFileSystemId(value); return *this;} /** *An array of one or more DNS alias names to disassociate, or remove, from the * file system.
*/ inline const Aws::VectorAn array of one or more DNS alias names to disassociate, or remove, from the * file system.
*/ inline bool AliasesHasBeenSet() const { return m_aliasesHasBeenSet; } /** *An array of one or more DNS alias names to disassociate, or remove, from the * file system.
*/ inline void SetAliases(const Aws::VectorAn array of one or more DNS alias names to disassociate, or remove, from the * file system.
*/ inline void SetAliases(Aws::VectorAn array of one or more DNS alias names to disassociate, or remove, from the * file system.
*/ inline DisassociateFileSystemAliasesRequest& WithAliases(const Aws::VectorAn array of one or more DNS alias names to disassociate, or remove, from the * file system.
*/ inline DisassociateFileSystemAliasesRequest& WithAliases(Aws::VectorAn array of one or more DNS alias names to disassociate, or remove, from the * file system.
*/ inline DisassociateFileSystemAliasesRequest& AddAliases(const Aws::String& value) { m_aliasesHasBeenSet = true; m_aliases.push_back(value); return *this; } /** *An array of one or more DNS alias names to disassociate, or remove, from the * file system.
*/ inline DisassociateFileSystemAliasesRequest& AddAliases(Aws::String&& value) { m_aliasesHasBeenSet = true; m_aliases.push_back(std::move(value)); return *this; } /** *An array of one or more DNS alias names to disassociate, or remove, from the * file system.
*/ inline DisassociateFileSystemAliasesRequest& AddAliases(const char* value) { m_aliasesHasBeenSet = true; m_aliases.push_back(value); return *this; } private: Aws::String m_clientRequestToken; bool m_clientRequestTokenHasBeenSet = false; Aws::String m_fileSystemId; bool m_fileSystemIdHasBeenSet = false; Aws::Vector