Delete Domain
cloudsearch_delete_domain | R Documentation |
Permanently deletes a search domain and all of its data¶
Description¶
Permanently deletes a search domain and all of its data. Once a domain has been deleted, it cannot be recovered. For more information, see Deleting a Search Domain in the Amazon CloudSearch Developer Guide.
Usage¶
Arguments¶
DomainName
[required] The name of the domain you want to permanently delete.
Value¶
A list with the following syntax:
list(
DomainStatus = list(
DomainId = "string",
DomainName = "string",
ARN = "string",
Created = TRUE|FALSE,
Deleted = TRUE|FALSE,
DocService = list(
Endpoint = "string"
),
SearchService = list(
Endpoint = "string"
),
RequiresIndexDocuments = TRUE|FALSE,
Processing = TRUE|FALSE,
SearchInstanceType = "string",
SearchPartitionCount = 123,
SearchInstanceCount = 123,
Limits = list(
MaximumReplicationCount = 123,
MaximumPartitionCount = 123
)
)
)