Skip to content

Disassociate File System Aliases

fsx_disassociate_file_system_aliases R Documentation

Use this action to disassociate, or remove, one or more Domain Name Service (DNS) aliases from an Amazon FSx for Windows File Server file system

Description

Use this action to disassociate, or remove, one or more Domain Name Service (DNS) aliases from an Amazon FSx for Windows File Server file system. If you attempt to disassociate a DNS alias that is not associated with the file system, Amazon FSx responds with an HTTP status code 400 (Bad Request). For more information, see Working with DNS Aliases.

The system generated response showing the DNS aliases that Amazon FSx is attempting to disassociate from the file system. Use the API operation to monitor the status of the aliases Amazon FSx is disassociating with the file system.

Usage

fsx_disassociate_file_system_aliases(ClientRequestToken, FileSystemId,
  Aliases)

Arguments

ClientRequestToken
FileSystemId

[required] Specifies the file system from which to disassociate the DNS aliases.

Aliases

[required] An array of one or more DNS alias names to disassociate, or remove, from the file system.

Value

A list with the following syntax:

list(
  Aliases = list(
    list(
      Name = "string",
      Lifecycle = "AVAILABLE"|"CREATING"|"DELETING"|"CREATE_FAILED"|"DELETE_FAILED"
    )
  )
)

Request syntax

svc$disassociate_file_system_aliases(
  ClientRequestToken = "string",
  FileSystemId = "string",
  Aliases = list(
    "string"
  )
)