Amazon Elasticsearch Configuration Service
Use the Amazon Elasticsearch Configuration API to create, configure, and manage Elasticsearch domains.
For sample code that uses the Configuration API, see the Amazon Elasticsearch Service Developer Guide. The guide also contains sample code for sending signed HTTP requests to the Elasticsearch APIs.
The endpoint for configuration service requests is region-specific: es.region.amazonaws.com. For example, es.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see Regions and Endpoints.
elasticsearchservice(config = list())
A client for the service. You can call the service's operations using
syntax like svc$operation(...)
, where svc
is the name you've assigned
to the client. The available operations are listed in the
Operations section.
Optional configuration of credentials, endpoint, and/or region.
svc <- elasticsearchservice(
config = list(
credentials = list(
creds = list(
access_key_id = "string",
secret_access_key = "string",
session_token = "string"
),
profile = "string"
),
endpoint = "string",
region = "string"
)
)
accept_inbound_cross_cluster_search_connection | Allows the destination domain owner to accept an inbound cross-cluster search connection request |
add_tags | Attaches tags to an existing Elasticsearch domain |
associate_package | Associates a package with an Amazon ES domain |
cancel_elasticsearch_service_software_update | Cancels a scheduled service software update for an Amazon ES domain |
create_elasticsearch_domain | Creates a new Elasticsearch domain |
create_outbound_cross_cluster_search_connection | Creates a new cross-cluster search connection from a source domain to a destination domain |
create_package | Create a package for use with Amazon ES domains |
delete_elasticsearch_domain | Permanently deletes the specified Elasticsearch domain and all of its data |
delete_elasticsearch_service_role | Deletes the service-linked role that Elasticsearch Service uses to manage and maintain VPC domains |
delete_inbound_cross_cluster_search_connection | Allows the destination domain owner to delete an existing inbound cross-cluster search connection |
delete_outbound_cross_cluster_search_connection | Allows the source domain owner to delete an existing outbound cross-cluster search connection |
delete_package | Delete the package |
describe_elasticsearch_domain | Returns domain configuration information about the specified Elasticsearch domain, including the domain ID, domain endpoint, and domain ARN |
describe_elasticsearch_domain_config | Provides cluster configuration information about the specified Elasticsearch domain, such as the state, creation date, update version, and update date for cluster options |
describe_elasticsearch_domains | Returns domain configuration information about the specified Elasticsearch domains, including the domain ID, domain endpoint, and domain ARN |
describe_elasticsearch_instance_type_limits | Describe Elasticsearch Limits for a given InstanceType and ElasticsearchVersion |
describe_inbound_cross_cluster_search_connections | Lists all the inbound cross-cluster search connections for a destination domain |
describe_outbound_cross_cluster_search_connections | Lists all the outbound cross-cluster search connections for a source domain |
describe_packages | Describes all packages available to Amazon ES |
describe_reserved_elasticsearch_instance_offerings | Lists available reserved Elasticsearch instance offerings |
describe_reserved_elasticsearch_instances | Returns information about reserved Elasticsearch instances for this account |
dissociate_package | Dissociates a package from the Amazon ES domain |
get_compatible_elasticsearch_versions | Returns a list of upgrade compatible Elastisearch versions |
get_package_version_history | Returns a list of versions of the package, along with their creation time and commit message |
get_upgrade_history | Retrieves the complete history of the last 10 upgrades that were performed on the domain |
get_upgrade_status | Retrieves the latest status of the last upgrade or upgrade eligibility check that was performed on the domain |
list_domain_names | Returns the name of all Elasticsearch domains owned by the current user's account |
list_domains_for_package | Lists all Amazon ES domains associated with the package |
list_elasticsearch_instance_types | List all Elasticsearch instance types that are supported for given ElasticsearchVersion |
list_elasticsearch_versions | List all supported Elasticsearch versions |
list_packages_for_domain | Lists all packages associated with the Amazon ES domain |
list_tags | Returns all tags for the given Elasticsearch domain |
purchase_reserved_elasticsearch_instance_offering | Allows you to purchase reserved Elasticsearch instances |
reject_inbound_cross_cluster_search_connection | Allows the destination domain owner to reject an inbound cross-cluster search connection request |
remove_tags | Removes the specified set of tags from the specified Elasticsearch domain |
start_elasticsearch_service_software_update | Schedules a service software update for an Amazon ES domain |
update_elasticsearch_domain_config | Modifies the cluster configuration of the specified Elasticsearch domain, setting as setting the instance type and the number of instances |
update_package | Updates a package for use with Amazon ES domains |
upgrade_elasticsearch_domain | Allows you to either upgrade your domain or perform an Upgrade eligibility check to a compatible Elasticsearch version |
if (FALSE) {
svc <- elasticsearchservice()
svc$accept_inbound_cross_cluster_search_connection(
Foo = 123
)
}
Run the code above in your browser using DataLab