ElasticsearchService

Client

class ElasticsearchService.Client

A low-level client representing Amazon Elasticsearch 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.

import boto3

client = boto3.client('es')

These are the available methods:

accept_inbound_cross_cluster_search_connection(**kwargs)

Allows the destination domain owner to accept an inbound cross-cluster search connection request.

See also: AWS API Documentation

Request Syntax

response = client.accept_inbound_cross_cluster_search_connection(
    CrossClusterSearchConnectionId='string'
)
Parameters
CrossClusterSearchConnectionId (string) --

[REQUIRED]

The id of the inbound connection that you want to accept.

Return type
dict
Returns
Response Syntax
{
    'CrossClusterSearchConnection': {
        'SourceDomainInfo': {
            'OwnerId': 'string',
            'DomainName': 'string',
            'Region': 'string'
        },
        'DestinationDomainInfo': {
            'OwnerId': 'string',
            'DomainName': 'string',
            'Region': 'string'
        },
        'CrossClusterSearchConnectionId': 'string',
        'ConnectionStatus': {
            'StatusCode': 'PENDING_ACCEPTANCE'|'APPROVED'|'REJECTING'|'REJECTED'|'DELETING'|'DELETED',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    The result of a AcceptInboundCrossClusterSearchConnection operation. Contains details of accepted inbound connection.

    • CrossClusterSearchConnection (dict) --

      Specifies the InboundCrossClusterSearchConnection of accepted inbound connection.

      • SourceDomainInfo (dict) --

        Specifies the DomainInformation for the source Elasticsearch domain.

        • OwnerId (string) --
        • DomainName (string) --

          The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

        • Region (string) --
      • DestinationDomainInfo (dict) --

        Specifies the DomainInformation for the destination Elasticsearch domain.

        • OwnerId (string) --
        • DomainName (string) --

          The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

        • Region (string) --
      • CrossClusterSearchConnectionId (string) --

        Specifies the connection id for the inbound cross-cluster search connection.

      • ConnectionStatus (dict) --

        Specifies the InboundCrossClusterSearchConnectionStatus for the outbound connection.

        • StatusCode (string) --

          The state code for inbound connection. This can be one of the following:

          • PENDING_ACCEPTANCE: Inbound connection is not yet accepted by destination domain owner.
          • APPROVED: Inbound connection is pending acceptance by destination domain owner.
          • REJECTING: Inbound connection rejection is in process.
          • REJECTED: Inbound connection is rejected.
          • DELETING: Inbound connection deletion is in progress.
          • DELETED: Inbound connection is deleted and cannot be used further.
        • Message (string) --

          Specifies verbose information for the inbound connection status.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.LimitExceededException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
add_tags(**kwargs)

Attaches tags to an existing Elasticsearch domain. Tags are a set of case-sensitive key value pairs. An Elasticsearch domain may have up to 10 tags. See Tagging Amazon Elasticsearch Service Domains for more information.

See also: AWS API Documentation

Request Syntax

response = client.add_tags(
    ARN='string',
    TagList=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • ARN (string) --

    [REQUIRED]

    Specify the ARN for which you want to add the tags.

  • TagList (list) --

    [REQUIRED]

    List of Tag that need to be added for the Elasticsearch domain.

    • (dict) --

      Specifies a key value pair for a resource tag.

      • Key (string) -- [REQUIRED]

        Specifies the TagKey , the name of the tag. Tag keys must be unique for the Elasticsearch domain to which they are attached.

      • Value (string) -- [REQUIRED]

        Specifies the TagValue , the value assigned to the corresponding tag key. Tag values can be null and do not have to be unique in a tag set. For example, you can have a key value pair in a tag set of project : Trinity and cost-center : Trinity

Returns

None

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.LimitExceededException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.InternalException
associate_package(**kwargs)

Associates a package with an Amazon ES domain.

See also: AWS API Documentation

Request Syntax

response = client.associate_package(
    PackageID='string',
    DomainName='string'
)
Parameters
  • PackageID (string) --

    [REQUIRED]

    Internal ID of the package that you want to associate with a domain. Use DescribePackages to find this value.

  • DomainName (string) --

    [REQUIRED]

    Name of the domain that you want to associate the package with.

Return type

dict

Returns

Response Syntax

{
    'DomainPackageDetails': {
        'PackageID': 'string',
        'PackageName': 'string',
        'PackageType': 'TXT-DICTIONARY',
        'LastUpdated': datetime(2015, 1, 1),
        'DomainName': 'string',
        'DomainPackageStatus': 'ASSOCIATING'|'ASSOCIATION_FAILED'|'ACTIVE'|'DISSOCIATING'|'DISSOCIATION_FAILED',
        'PackageVersion': 'string',
        'ReferencePath': 'string',
        'ErrorDetails': {
            'ErrorType': 'string',
            'ErrorMessage': 'string'
        }
    }
}

Response Structure

  • (dict) --

    Container for response returned by AssociatePackage operation.

    • DomainPackageDetails (dict) --

      DomainPackageDetails

      • PackageID (string) --

        Internal ID of the package.

      • PackageName (string) --

        User specified name of the package.

      • PackageType (string) --

        Currently supports only TXT-DICTIONARY.

      • LastUpdated (datetime) --

        Timestamp of the most-recent update to the association status.

      • DomainName (string) --

        Name of the domain you've associated a package with.

      • DomainPackageStatus (string) --

        State of the association. Values are ASSOCIATING/ASSOCIATION_FAILED/ACTIVE/DISSOCIATING/DISSOCIATION_FAILED.

      • PackageVersion (string) --

      • ReferencePath (string) --

        The relative path on Amazon ES nodes, which can be used as synonym_path when the package is synonym file.

      • ErrorDetails (dict) --

        Additional information if the package is in an error state. Null otherwise.

        • ErrorType (string) --
        • ErrorMessage (string) --

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.AccessDeniedException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.ConflictException
authorize_vpc_endpoint_access(**kwargs)

Provides access to an Amazon OpenSearch Service domain through the use of an interface VPC endpoint.

See also: AWS API Documentation

Request Syntax

response = client.authorize_vpc_endpoint_access(
    DomainName='string',
    Account='string'
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    The name of the OpenSearch Service domain to provide access to.

  • Account (string) --

    [REQUIRED]

    The account ID to grant access to.

Return type

dict

Returns

Response Syntax

{
    'AuthorizedPrincipal': {
        'PrincipalType': 'AWS_ACCOUNT'|'AWS_SERVICE',
        'Principal': 'string'
    }
}

Response Structure

  • (dict) --

    Container for response parameters to the AuthorizeVpcEndpointAccess operation. Contains the account ID and the type of the account being authorized to access the VPC endpoint.

    • AuthorizedPrincipal (dict) --

      Information about the account or service that was provided access to the domain.

      • PrincipalType (string) --

        The type of principal.

      • Principal (string) --

        The IAM principal that is allowed access to the domain.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.LimitExceededException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.BaseException
can_paginate(operation_name)

Check if an operation can be paginated.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Returns
True if the operation can be paginated, False otherwise.
cancel_elasticsearch_service_software_update(**kwargs)

Cancels a scheduled service software update for an Amazon ES domain. You can only perform this operation before the AutomatedUpdateDate and when the UpdateStatus is in the PENDING_UPDATE state.

See also: AWS API Documentation

Request Syntax

response = client.cancel_elasticsearch_service_software_update(
    DomainName='string'
)
Parameters
DomainName (string) --

[REQUIRED]

The name of the domain that you want to stop the latest service software update on.

Return type
dict
Returns
Response Syntax
{
    'ServiceSoftwareOptions': {
        'CurrentVersion': 'string',
        'NewVersion': 'string',
        'UpdateAvailable': True|False,
        'Cancellable': True|False,
        'UpdateStatus': 'PENDING_UPDATE'|'IN_PROGRESS'|'COMPLETED'|'NOT_ELIGIBLE'|'ELIGIBLE',
        'Description': 'string',
        'AutomatedUpdateDate': datetime(2015, 1, 1),
        'OptionalDeployment': True|False
    }
}

Response Structure

  • (dict) --

    The result of a CancelElasticsearchServiceSoftwareUpdate operation. Contains the status of the update.

    • ServiceSoftwareOptions (dict) --

      The current status of the Elasticsearch service software update.

      • CurrentVersion (string) --

        The current service software version that is present on the domain.

      • NewVersion (string) --

        The new service software version if one is available.

      • UpdateAvailable (boolean) --

        True if you are able to update you service software version. False if you are not able to update your service software version.

      • Cancellable (boolean) --

        True if you are able to cancel your service software version update. False if you are not able to cancel your service software version.

      • UpdateStatus (string) --

        The status of your service software update. This field can take the following values: ELIGIBLE , PENDING_UPDATE , IN_PROGRESS , COMPLETED , and NOT_ELIGIBLE .

      • Description (string) --

        The description of the UpdateStatus .

      • AutomatedUpdateDate (datetime) --

        Timestamp, in Epoch time, until which you can manually request a service software update. After this date, we automatically update your service software.

      • OptionalDeployment (boolean) --

        True if a service software is never automatically updated. False if a service software is automatically updated after AutomatedUpdateDate .

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
close()

Closes underlying endpoint connections.

create_elasticsearch_domain(**kwargs)

Creates a new Elasticsearch domain. For more information, see Creating Elasticsearch Domains in the Amazon Elasticsearch Service Developer Guide .

See also: AWS API Documentation

Request Syntax

response = client.create_elasticsearch_domain(
    DomainName='string',
    ElasticsearchVersion='string',
    ElasticsearchClusterConfig={
        'InstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
        'InstanceCount': 123,
        'DedicatedMasterEnabled': True|False,
        'ZoneAwarenessEnabled': True|False,
        'ZoneAwarenessConfig': {
            'AvailabilityZoneCount': 123
        },
        'DedicatedMasterType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
        'DedicatedMasterCount': 123,
        'WarmEnabled': True|False,
        'WarmType': 'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch',
        'WarmCount': 123,
        'ColdStorageOptions': {
            'Enabled': True|False
        }
    },
    EBSOptions={
        'EBSEnabled': True|False,
        'VolumeType': 'standard'|'gp2'|'io1'|'gp3',
        'VolumeSize': 123,
        'Iops': 123,
        'Throughput': 123
    },
    AccessPolicies='string',
    SnapshotOptions={
        'AutomatedSnapshotStartHour': 123
    },
    VPCOptions={
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ]
    },
    CognitoOptions={
        'Enabled': True|False,
        'UserPoolId': 'string',
        'IdentityPoolId': 'string',
        'RoleArn': 'string'
    },
    EncryptionAtRestOptions={
        'Enabled': True|False,
        'KmsKeyId': 'string'
    },
    NodeToNodeEncryptionOptions={
        'Enabled': True|False
    },
    AdvancedOptions={
        'string': 'string'
    },
    LogPublishingOptions={
        'string': {
            'CloudWatchLogsLogGroupArn': 'string',
            'Enabled': True|False
        }
    },
    DomainEndpointOptions={
        'EnforceHTTPS': True|False,
        'TLSSecurityPolicy': 'Policy-Min-TLS-1-0-2019-07'|'Policy-Min-TLS-1-2-2019-07',
        'CustomEndpointEnabled': True|False,
        'CustomEndpoint': 'string',
        'CustomEndpointCertificateArn': 'string'
    },
    AdvancedSecurityOptions={
        'Enabled': True|False,
        'InternalUserDatabaseEnabled': True|False,
        'MasterUserOptions': {
            'MasterUserARN': 'string',
            'MasterUserName': 'string',
            'MasterUserPassword': 'string'
        },
        'SAMLOptions': {
            'Enabled': True|False,
            'Idp': {
                'MetadataContent': 'string',
                'EntityId': 'string'
            },
            'MasterUserName': 'string',
            'MasterBackendRole': 'string',
            'SubjectKey': 'string',
            'RolesKey': 'string',
            'SessionTimeoutMinutes': 123
        },
        'AnonymousAuthEnabled': True|False
    },
    AutoTuneOptions={
        'DesiredState': 'ENABLED'|'DISABLED',
        'MaintenanceSchedules': [
            {
                'StartAt': datetime(2015, 1, 1),
                'Duration': {
                    'Value': 123,
                    'Unit': 'HOURS'
                },
                'CronExpressionForRecurrence': 'string'
            },
        ]
    },
    TagList=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    The name of the Elasticsearch domain that you are creating. Domain names are unique across the domains owned by an account within an AWS region. Domain names must start with a lowercase letter and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

  • ElasticsearchVersion (string) -- String of format X.Y to specify version for the Elasticsearch domain eg. "1.5" or "2.3". For more information, see Creating Elasticsearch Domains in the Amazon Elasticsearch Service Developer Guide .
  • ElasticsearchClusterConfig (dict) --

    Configuration options for an Elasticsearch domain. Specifies the instance type and number of instances in the domain cluster.

    • InstanceType (string) --

      The instance type for an Elasticsearch cluster. UltraWarm instance types are not supported for data instances.

    • InstanceCount (integer) --

      The number of instances in the specified domain cluster.

    • DedicatedMasterEnabled (boolean) --

      A boolean value to indicate whether a dedicated master node is enabled. See About Dedicated Master Nodes for more information.

    • ZoneAwarenessEnabled (boolean) --

      A boolean value to indicate whether zone awareness is enabled. See About Zone Awareness for more information.

    • ZoneAwarenessConfig (dict) --

      Specifies the zone awareness configuration for a domain when zone awareness is enabled.

      • AvailabilityZoneCount (integer) --

        An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled

    • DedicatedMasterType (string) --

      The instance type for a dedicated master node.

    • DedicatedMasterCount (integer) --

      Total number of dedicated master nodes, active and on standby, for the cluster.

    • WarmEnabled (boolean) --

      True to enable warm storage.

    • WarmType (string) --

      The instance type for the Elasticsearch cluster's warm nodes.

    • WarmCount (integer) --

      The number of warm nodes in the cluster.

    • ColdStorageOptions (dict) --

      Specifies the ColdStorageOptions config for Elasticsearch Domain

      • Enabled (boolean) -- [REQUIRED]

        Enable cold storage option. Accepted values true or false

  • EBSOptions (dict) --

    Options to enable, disable and specify the type and size of EBS storage volumes.

    • EBSEnabled (boolean) --

      Specifies whether EBS-based storage is enabled.

    • VolumeType (string) --

      Specifies the volume type for EBS-based storage.

    • VolumeSize (integer) --

      Integer to specify the size of an EBS volume.

    • Iops (integer) --

      Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).

    • Throughput (integer) --

      Specifies the Throughput for GP3 EBS volume (SSD).

  • AccessPolicies (string) -- IAM access policy as a JSON-formatted string.
  • SnapshotOptions (dict) --

    Option to set time, in UTC format, of the daily automated snapshot. Default value is 0 hours.

    • AutomatedSnapshotStartHour (integer) --

      Specifies the time, in UTC format, when the service takes a daily automated snapshot of the specified Elasticsearch domain. Default value is 0 hours.

  • VPCOptions (dict) --

    Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains

    • SubnetIds (list) --

      Specifies the subnets for VPC endpoint.

      • (string) --
    • SecurityGroupIds (list) --

      Specifies the security groups for VPC endpoint.

      • (string) --
  • CognitoOptions (dict) --

    Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana.

    • Enabled (boolean) --

      Specifies the option to enable Cognito for Kibana authentication.

    • UserPoolId (string) --

      Specifies the Cognito user pool ID for Kibana authentication.

    • IdentityPoolId (string) --

      Specifies the Cognito identity pool ID for Kibana authentication.

    • RoleArn (string) --

      Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.

  • EncryptionAtRestOptions (dict) --

    Specifies the Encryption At Rest Options.

    • Enabled (boolean) --

      Specifies the option to enable Encryption At Rest.

    • KmsKeyId (string) --

      Specifies the KMS Key ID for Encryption At Rest options.

  • NodeToNodeEncryptionOptions (dict) --

    Specifies the NodeToNodeEncryptionOptions.

    • Enabled (boolean) --

      Specify true to enable node-to-node encryption.

  • AdvancedOptions (dict) --

    Option to allow references to indices in an HTTP request body. Must be false when configuring access to individual sub-resources. By default, the value is true . See Configuration Advanced Options for more information.

    • (string) --
      • (string) --
  • LogPublishingOptions (dict) --

    Map of LogType and LogPublishingOption , each containing options to publish a given type of Elasticsearch log.

    • (string) --

      Type of Log File, it can be one of the following:

      • INDEX_SLOW_LOGS: Index slow logs contain insert requests that took more time than configured index query log threshold to execute.
      • SEARCH_SLOW_LOGS: Search slow logs contain search queries that took more time than configured search query log threshold to execute.
      • ES_APPLICATION_LOGS: Elasticsearch application logs contain information about errors and warnings raised during the operation of the service and can be useful for troubleshooting.
      • AUDIT_LOGS: Audit logs contain records of user requests for access from the domain.
      • (dict) --

        Log Publishing option that is set for given domain. Attributes and their details:

        • CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which log needs to be published.
        • Enabled: Whether the log publishing for given log type is enabled or not
        • CloudWatchLogsLogGroupArn (string) --

          ARN of the Cloudwatch log group to which log needs to be published.

        • Enabled (boolean) --

          Specifies whether given log publishing option is enabled or not.

  • DomainEndpointOptions (dict) --

    Options to specify configuration that will be applied to the domain endpoint.

    • EnforceHTTPS (boolean) --

      Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.

    • TLSSecurityPolicy (string) --

      Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain. It can be one of the following values:

      • Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLSv1.0 and higher.
      • Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2
    • CustomEndpointEnabled (boolean) --

      Specify if custom endpoint should be enabled for the Elasticsearch domain.

    • CustomEndpoint (string) --

      Specify the fully qualified domain for your custom endpoint.

    • CustomEndpointCertificateArn (string) --

      Specify ACM certificate ARN for your custom endpoint.

  • AdvancedSecurityOptions (dict) --

    Specifies advanced security options.

    • Enabled (boolean) --

      True if advanced security is enabled.

    • InternalUserDatabaseEnabled (boolean) --

      True if the internal user database is enabled.

    • MasterUserOptions (dict) --

      Credentials for the master user: username and password, ARN, or both.

      • MasterUserARN (string) --

        ARN for the master user (if IAM is enabled).

      • MasterUserName (string) --

        The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database.

      • MasterUserPassword (string) --

        The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database.

    • SAMLOptions (dict) --

      Specifies the SAML application configuration for the domain.

      • Enabled (boolean) --

        True if SAML is enabled.

      • Idp (dict) --

        Specifies the SAML Identity Provider's information.

        • MetadataContent (string) -- [REQUIRED]

          The Metadata of the SAML application in xml format.

        • EntityId (string) -- [REQUIRED]

          The unique Entity ID of the application in SAML Identity Provider.

      • MasterUserName (string) --

        The SAML master username, which is stored in the Amazon Elasticsearch Service domain's internal database.

      • MasterBackendRole (string) --

        The backend role to which the SAML master user is mapped to.

      • SubjectKey (string) --

        The key to use for matching the SAML Subject attribute.

      • RolesKey (string) --

        The key to use for matching the SAML Roles attribute.

      • SessionTimeoutMinutes (integer) --

        The duration, in minutes, after which a user session becomes inactive. Acceptable values are between 1 and 1440, and the default value is 60.

    • AnonymousAuthEnabled (boolean) --

      True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.

  • AutoTuneOptions (dict) --

    Specifies Auto-Tune options.

    • DesiredState (string) --

      Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED.

    • MaintenanceSchedules (list) --

      Specifies list of maitenance schedules. See the Developer Guide for more information.

      • (dict) --

        Specifies Auto-Tune maitenance schedule. See the Developer Guide for more information.

        • StartAt (datetime) --

          Specifies timestamp at which Auto-Tune maintenance schedule start.

        • Duration (dict) --

          Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information.

          • Value (integer) --

            Integer to specify the value of a maintenance schedule duration. See the Developer Guide for more information.

          • Unit (string) --

            Specifies the unit of a maintenance schedule duration. Valid value is HOURS. See the Developer Guide for more information.

        • CronExpressionForRecurrence (string) --

          Specifies cron expression for a recurring maintenance schedule. See the Developer Guide for more information.

  • TagList (list) --

    A list of Tag added during domain creation.

    • (dict) --

      Specifies a key value pair for a resource tag.

      • Key (string) -- [REQUIRED]

        Specifies the TagKey , the name of the tag. Tag keys must be unique for the Elasticsearch domain to which they are attached.

      • Value (string) -- [REQUIRED]

        Specifies the TagValue , the value assigned to the corresponding tag key. Tag values can be null and do not have to be unique in a tag set. For example, you can have a key value pair in a tag set of project : Trinity and cost-center : Trinity

Return type

dict

Returns

Response Syntax

{
    'DomainStatus': {
        'DomainId': 'string',
        'DomainName': 'string',
        'ARN': 'string',
        'Created': True|False,
        'Deleted': True|False,
        'Endpoint': 'string',
        'Endpoints': {
            'string': 'string'
        },
        'Processing': True|False,
        'UpgradeProcessing': True|False,
        'ElasticsearchVersion': 'string',
        'ElasticsearchClusterConfig': {
            'InstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
            'InstanceCount': 123,
            'DedicatedMasterEnabled': True|False,
            'ZoneAwarenessEnabled': True|False,
            'ZoneAwarenessConfig': {
                'AvailabilityZoneCount': 123
            },
            'DedicatedMasterType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
            'DedicatedMasterCount': 123,
            'WarmEnabled': True|False,
            'WarmType': 'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch',
            'WarmCount': 123,
            'ColdStorageOptions': {
                'Enabled': True|False
            }
        },
        'EBSOptions': {
            'EBSEnabled': True|False,
            'VolumeType': 'standard'|'gp2'|'io1'|'gp3',
            'VolumeSize': 123,
            'Iops': 123,
            'Throughput': 123
        },
        'AccessPolicies': 'string',
        'SnapshotOptions': {
            'AutomatedSnapshotStartHour': 123
        },
        'VPCOptions': {
            'VPCId': 'string',
            'SubnetIds': [
                'string',
            ],
            'AvailabilityZones': [
                'string',
            ],
            'SecurityGroupIds': [
                'string',
            ]
        },
        'CognitoOptions': {
            'Enabled': True|False,
            'UserPoolId': 'string',
            'IdentityPoolId': 'string',
            'RoleArn': 'string'
        },
        'EncryptionAtRestOptions': {
            'Enabled': True|False,
            'KmsKeyId': 'string'
        },
        'NodeToNodeEncryptionOptions': {
            'Enabled': True|False
        },
        'AdvancedOptions': {
            'string': 'string'
        },
        'LogPublishingOptions': {
            'string': {
                'CloudWatchLogsLogGroupArn': 'string',
                'Enabled': True|False
            }
        },
        'ServiceSoftwareOptions': {
            'CurrentVersion': 'string',
            'NewVersion': 'string',
            'UpdateAvailable': True|False,
            'Cancellable': True|False,
            'UpdateStatus': 'PENDING_UPDATE'|'IN_PROGRESS'|'COMPLETED'|'NOT_ELIGIBLE'|'ELIGIBLE',
            'Description': 'string',
            'AutomatedUpdateDate': datetime(2015, 1, 1),
            'OptionalDeployment': True|False
        },
        'DomainEndpointOptions': {
            'EnforceHTTPS': True|False,
            'TLSSecurityPolicy': 'Policy-Min-TLS-1-0-2019-07'|'Policy-Min-TLS-1-2-2019-07',
            'CustomEndpointEnabled': True|False,
            'CustomEndpoint': 'string',
            'CustomEndpointCertificateArn': 'string'
        },
        'AdvancedSecurityOptions': {
            'Enabled': True|False,
            'InternalUserDatabaseEnabled': True|False,
            'SAMLOptions': {
                'Enabled': True|False,
                'Idp': {
                    'MetadataContent': 'string',
                    'EntityId': 'string'
                },
                'SubjectKey': 'string',
                'RolesKey': 'string',
                'SessionTimeoutMinutes': 123
            },
            'AnonymousAuthDisableDate': datetime(2015, 1, 1),
            'AnonymousAuthEnabled': True|False
        },
        'AutoTuneOptions': {
            'State': 'ENABLED'|'DISABLED'|'ENABLE_IN_PROGRESS'|'DISABLE_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_SCHEDULED'|'DISABLED_AND_ROLLBACK_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_COMPLETE'|'DISABLED_AND_ROLLBACK_ERROR'|'ERROR',
            'ErrorMessage': 'string'
        },
        'ChangeProgressDetails': {
            'ChangeId': 'string',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    The result of a CreateElasticsearchDomain operation. Contains the status of the newly created Elasticsearch domain.

    • DomainStatus (dict) --

      The status of the newly created Elasticsearch domain.

      • DomainId (string) --

        The unique identifier for the specified Elasticsearch domain.

      • DomainName (string) --

        The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

      • ARN (string) --

        The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS Identity and Access Management for more information.

      • Created (boolean) --

        The domain creation status. True if the creation of an Elasticsearch domain is complete. False if domain creation is still in progress.

      • Deleted (boolean) --

        The domain deletion status. True if a delete request has been received for the domain but resource cleanup is still in progress. False if the domain has not been deleted. Once domain deletion is complete, the status of the domain is no longer returned.

      • Endpoint (string) --

        The Elasticsearch domain endpoint that you use to submit index and search requests.

      • Endpoints (dict) --

        Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example key, value : 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com' .

        • (string) --

          • (string) --

            The endpoint to which service requests are submitted. For example, search-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.es.amazonaws.com or doc-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.es.amazonaws.com .

      • Processing (boolean) --

        The status of the Elasticsearch domain configuration. True if Amazon Elasticsearch Service is processing configuration changes. False if the configuration is active.

      • UpgradeProcessing (boolean) --

        The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service is undergoing a version upgrade. False if the configuration is active.

      • ElasticsearchVersion (string) --

      • ElasticsearchClusterConfig (dict) --

        The type and number of instances in the domain cluster.

        • InstanceType (string) --

          The instance type for an Elasticsearch cluster. UltraWarm instance types are not supported for data instances.

        • InstanceCount (integer) --

          The number of instances in the specified domain cluster.

        • DedicatedMasterEnabled (boolean) --

          A boolean value to indicate whether a dedicated master node is enabled. See About Dedicated Master Nodes for more information.

        • ZoneAwarenessEnabled (boolean) --

          A boolean value to indicate whether zone awareness is enabled. See About Zone Awareness for more information.

        • ZoneAwarenessConfig (dict) --

          Specifies the zone awareness configuration for a domain when zone awareness is enabled.

          • AvailabilityZoneCount (integer) --

            An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled

        • DedicatedMasterType (string) --

          The instance type for a dedicated master node.

        • DedicatedMasterCount (integer) --

          Total number of dedicated master nodes, active and on standby, for the cluster.

        • WarmEnabled (boolean) --

          True to enable warm storage.

        • WarmType (string) --

          The instance type for the Elasticsearch cluster's warm nodes.

        • WarmCount (integer) --

          The number of warm nodes in the cluster.

        • ColdStorageOptions (dict) --

          Specifies the ColdStorageOptions config for Elasticsearch Domain

          • Enabled (boolean) --

            Enable cold storage option. Accepted values true or false

      • EBSOptions (dict) --

        The EBSOptions for the specified domain. See Configuring EBS-based Storage for more information.

        • EBSEnabled (boolean) --

          Specifies whether EBS-based storage is enabled.

        • VolumeType (string) --

          Specifies the volume type for EBS-based storage.

        • VolumeSize (integer) --

          Integer to specify the size of an EBS volume.

        • Iops (integer) --

          Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).

        • Throughput (integer) --

          Specifies the Throughput for GP3 EBS volume (SSD).

      • AccessPolicies (string) --

        IAM access policy as a JSON-formatted string.

      • SnapshotOptions (dict) --

        Specifies the status of the SnapshotOptions

        • AutomatedSnapshotStartHour (integer) --

          Specifies the time, in UTC format, when the service takes a daily automated snapshot of the specified Elasticsearch domain. Default value is 0 hours.

      • VPCOptions (dict) --

        The VPCOptions for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.

        • VPCId (string) --

          The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

        • SubnetIds (list) --

          Specifies the subnets for VPC endpoint.

          • (string) --
        • AvailabilityZones (list) --

          The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

          • (string) --
        • SecurityGroupIds (list) --

          Specifies the security groups for VPC endpoint.

          • (string) --
      • CognitoOptions (dict) --

        The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana.

        • Enabled (boolean) --

          Specifies the option to enable Cognito for Kibana authentication.

        • UserPoolId (string) --

          Specifies the Cognito user pool ID for Kibana authentication.

        • IdentityPoolId (string) --

          Specifies the Cognito identity pool ID for Kibana authentication.

        • RoleArn (string) --

          Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.

      • EncryptionAtRestOptions (dict) --

        Specifies the status of the EncryptionAtRestOptions .

        • Enabled (boolean) --

          Specifies the option to enable Encryption At Rest.

        • KmsKeyId (string) --

          Specifies the KMS Key ID for Encryption At Rest options.

      • NodeToNodeEncryptionOptions (dict) --

        Specifies the status of the NodeToNodeEncryptionOptions .

        • Enabled (boolean) --

          Specify true to enable node-to-node encryption.

      • AdvancedOptions (dict) --

        Specifies the status of the AdvancedOptions

        • (string) --
          • (string) --
      • LogPublishingOptions (dict) --

        Log publishing options for the given domain.

        • (string) --

          Type of Log File, it can be one of the following:

          • INDEX_SLOW_LOGS: Index slow logs contain insert requests that took more time than configured index query log threshold to execute.
          • SEARCH_SLOW_LOGS: Search slow logs contain search queries that took more time than configured search query log threshold to execute.
          • ES_APPLICATION_LOGS: Elasticsearch application logs contain information about errors and warnings raised during the operation of the service and can be useful for troubleshooting.
          • AUDIT_LOGS: Audit logs contain records of user requests for access from the domain.
          • (dict) --

            Log Publishing option that is set for given domain. Attributes and their details:

            • CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which log needs to be published.
            • Enabled: Whether the log publishing for given log type is enabled or not
            • CloudWatchLogsLogGroupArn (string) --

              ARN of the Cloudwatch log group to which log needs to be published.

            • Enabled (boolean) --

              Specifies whether given log publishing option is enabled or not.

      • ServiceSoftwareOptions (dict) --

        The current status of the Elasticsearch domain's service software.

        • CurrentVersion (string) --

          The current service software version that is present on the domain.

        • NewVersion (string) --

          The new service software version if one is available.

        • UpdateAvailable (boolean) --

          True if you are able to update you service software version. False if you are not able to update your service software version.

        • Cancellable (boolean) --

          True if you are able to cancel your service software version update. False if you are not able to cancel your service software version.

        • UpdateStatus (string) --

          The status of your service software update. This field can take the following values: ELIGIBLE , PENDING_UPDATE , IN_PROGRESS , COMPLETED , and NOT_ELIGIBLE .

        • Description (string) --

          The description of the UpdateStatus .

        • AutomatedUpdateDate (datetime) --

          Timestamp, in Epoch time, until which you can manually request a service software update. After this date, we automatically update your service software.

        • OptionalDeployment (boolean) --

          True if a service software is never automatically updated. False if a service software is automatically updated after AutomatedUpdateDate .

      • DomainEndpointOptions (dict) --

        The current status of the Elasticsearch domain's endpoint options.

        • EnforceHTTPS (boolean) --

          Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.

        • TLSSecurityPolicy (string) --

          Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain. It can be one of the following values:

          • Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLSv1.0 and higher.
          • Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2
        • CustomEndpointEnabled (boolean) --

          Specify if custom endpoint should be enabled for the Elasticsearch domain.

        • CustomEndpoint (string) --

          Specify the fully qualified domain for your custom endpoint.

        • CustomEndpointCertificateArn (string) --

          Specify ACM certificate ARN for your custom endpoint.

      • AdvancedSecurityOptions (dict) --

        The current status of the Elasticsearch domain's advanced security options.

        • Enabled (boolean) --

          True if advanced security is enabled.

        • InternalUserDatabaseEnabled (boolean) --

          True if the internal user database is enabled.

        • SAMLOptions (dict) --

          Describes the SAML application configured for a domain.

          • Enabled (boolean) --

            True if SAML is enabled.

          • Idp (dict) --

            Describes the SAML Identity Provider's information.

            • MetadataContent (string) --

              The Metadata of the SAML application in xml format.

            • EntityId (string) --

              The unique Entity ID of the application in SAML Identity Provider.

          • SubjectKey (string) --

            The key used for matching the SAML Subject attribute.

          • RolesKey (string) --

            The key used for matching the SAML Roles attribute.

          • SessionTimeoutMinutes (integer) --

            The duration, in minutes, after which a user session becomes inactive.

        • AnonymousAuthDisableDate (datetime) --

          Specifies the Anonymous Auth Disable Date when Anonymous Auth is enabled.

        • AnonymousAuthEnabled (boolean) --

          True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.

      • AutoTuneOptions (dict) --

        The current status of the Elasticsearch domain's Auto-Tune options.

        • State (string) --

          Specifies the AutoTuneState for the Elasticsearch domain.

        • ErrorMessage (string) --

          Specifies the error message while enabling or disabling the Auto-Tune.

      • ChangeProgressDetails (dict) --

        Specifies change details of the domain configuration change.

        • ChangeId (string) --

          The unique change identifier associated with a specific domain configuration change.

        • Message (string) --

          Contains an optional message associated with the domain configuration change.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.InvalidTypeException
  • ElasticsearchService.Client.exceptions.LimitExceededException
  • ElasticsearchService.Client.exceptions.ResourceAlreadyExistsException
  • ElasticsearchService.Client.exceptions.ValidationException
create_outbound_cross_cluster_search_connection(**kwargs)

Creates a new cross-cluster search connection from a source domain to a destination domain.

See also: AWS API Documentation

Request Syntax

response = client.create_outbound_cross_cluster_search_connection(
    SourceDomainInfo={
        'OwnerId': 'string',
        'DomainName': 'string',
        'Region': 'string'
    },
    DestinationDomainInfo={
        'OwnerId': 'string',
        'DomainName': 'string',
        'Region': 'string'
    },
    ConnectionAlias='string'
)
Parameters
  • SourceDomainInfo (dict) --

    [REQUIRED]

    Specifies the DomainInformation for the source Elasticsearch domain.

    • OwnerId (string) --
    • DomainName (string) -- [REQUIRED]

      The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

    • Region (string) --
  • DestinationDomainInfo (dict) --

    [REQUIRED]

    Specifies the DomainInformation for the destination Elasticsearch domain.

    • OwnerId (string) --
    • DomainName (string) -- [REQUIRED]

      The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

    • Region (string) --
  • ConnectionAlias (string) --

    [REQUIRED]

    Specifies the connection alias that will be used by the customer for this connection.

Return type

dict

Returns

Response Syntax

{
    'SourceDomainInfo': {
        'OwnerId': 'string',
        'DomainName': 'string',
        'Region': 'string'
    },
    'DestinationDomainInfo': {
        'OwnerId': 'string',
        'DomainName': 'string',
        'Region': 'string'
    },
    'ConnectionAlias': 'string',
    'ConnectionStatus': {
        'StatusCode': 'PENDING_ACCEPTANCE'|'VALIDATING'|'VALIDATION_FAILED'|'PROVISIONING'|'ACTIVE'|'REJECTED'|'DELETING'|'DELETED',
        'Message': 'string'
    },
    'CrossClusterSearchConnectionId': 'string'
}

Response Structure

  • (dict) --

    The result of a CreateOutboundCrossClusterSearchConnection request. Contains the details of the newly created cross-cluster search connection.

    • SourceDomainInfo (dict) --

      Specifies the DomainInformation for the source Elasticsearch domain.

      • OwnerId (string) --

      • DomainName (string) --

        The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

      • Region (string) --

    • DestinationDomainInfo (dict) --

      Specifies the DomainInformation for the destination Elasticsearch domain.

      • OwnerId (string) --

      • DomainName (string) --

        The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

      • Region (string) --

    • ConnectionAlias (string) --

      Specifies the connection alias provided during the create connection request.

    • ConnectionStatus (dict) --

      Specifies the OutboundCrossClusterSearchConnectionStatus for the newly created connection.

      • StatusCode (string) --

        The state code for outbound connection. This can be one of the following:

        • VALIDATING: The outbound connection request is being validated.
        • VALIDATION_FAILED: Validation failed for the connection request.
        • PENDING_ACCEPTANCE: Outbound connection request is validated and is not yet accepted by destination domain owner.
        • PROVISIONING: Outbound connection request is in process.
        • ACTIVE: Outbound connection is active and ready to use.
        • REJECTED: Outbound connection request is rejected by destination domain owner.
        • DELETING: Outbound connection deletion is in progress.
        • DELETED: Outbound connection is deleted and cannot be used further.
      • Message (string) --

        Specifies verbose information for the outbound connection status.

    • CrossClusterSearchConnectionId (string) --

      Unique id for the created outbound connection, which is used for subsequent operations on connection.

Exceptions

  • ElasticsearchService.Client.exceptions.LimitExceededException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceAlreadyExistsException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
create_package(**kwargs)

Create a package for use with Amazon ES domains.

See also: AWS API Documentation

Request Syntax

response = client.create_package(
    PackageName='string',
    PackageType='TXT-DICTIONARY',
    PackageDescription='string',
    PackageSource={
        'S3BucketName': 'string',
        'S3Key': 'string'
    }
)
Parameters
  • PackageName (string) --

    [REQUIRED]

    Unique identifier for the package.

  • PackageType (string) --

    [REQUIRED]

    Type of package. Currently supports only TXT-DICTIONARY.

  • PackageDescription (string) -- Description of the package.
  • PackageSource (dict) --

    [REQUIRED]

    The customer S3 location PackageSource for importing the package.

    • S3BucketName (string) --

      Name of the bucket containing the package.

    • S3Key (string) --

      Key (file name) of the package.

Return type

dict

Returns

Response Syntax

{
    'PackageDetails': {
        'PackageID': 'string',
        'PackageName': 'string',
        'PackageType': 'TXT-DICTIONARY',
        'PackageDescription': 'string',
        'PackageStatus': 'COPYING'|'COPY_FAILED'|'VALIDATING'|'VALIDATION_FAILED'|'AVAILABLE'|'DELETING'|'DELETED'|'DELETE_FAILED',
        'CreatedAt': datetime(2015, 1, 1),
        'LastUpdatedAt': datetime(2015, 1, 1),
        'AvailablePackageVersion': 'string',
        'ErrorDetails': {
            'ErrorType': 'string',
            'ErrorMessage': 'string'
        }
    }
}

Response Structure

  • (dict) --

    Container for response returned by CreatePackage operation.

    • PackageDetails (dict) --

      Information about the package PackageDetails .

      • PackageID (string) --

        Internal ID of the package.

      • PackageName (string) --

        User specified name of the package.

      • PackageType (string) --

        Currently supports only TXT-DICTIONARY.

      • PackageDescription (string) --

        User-specified description of the package.

      • PackageStatus (string) --

        Current state of the package. Values are COPYING/COPY_FAILED/AVAILABLE/DELETING/DELETE_FAILED

      • CreatedAt (datetime) --

        Timestamp which tells creation date of the package.

      • LastUpdatedAt (datetime) --

      • AvailablePackageVersion (string) --

      • ErrorDetails (dict) --

        Additional information if the package is in an error state. Null otherwise.

        • ErrorType (string) --
        • ErrorMessage (string) --

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.LimitExceededException
  • ElasticsearchService.Client.exceptions.InvalidTypeException
  • ElasticsearchService.Client.exceptions.ResourceAlreadyExistsException
  • ElasticsearchService.Client.exceptions.AccessDeniedException
  • ElasticsearchService.Client.exceptions.ValidationException
create_vpc_endpoint(**kwargs)

Creates an Amazon OpenSearch Service-managed VPC endpoint.

See also: AWS API Documentation

Request Syntax

response = client.create_vpc_endpoint(
    DomainArn='string',
    VpcOptions={
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ]
    },
    ClientToken='string'
)
Parameters
  • DomainArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the domain to grant access to.

  • VpcOptions (dict) --

    [REQUIRED]

    Options to specify the subnets and security groups for the endpoint.

    • SubnetIds (list) --

      Specifies the subnets for VPC endpoint.

      • (string) --
    • SecurityGroupIds (list) --

      Specifies the security groups for VPC endpoint.

      • (string) --
  • ClientToken (string) -- Unique, case-sensitive identifier to ensure idempotency of the request.
Return type

dict

Returns

Response Syntax

{
    'VpcEndpoint': {
        'VpcEndpointId': 'string',
        'VpcEndpointOwner': 'string',
        'DomainArn': 'string',
        'VpcOptions': {
            'VPCId': 'string',
            'SubnetIds': [
                'string',
            ],
            'AvailabilityZones': [
                'string',
            ],
            'SecurityGroupIds': [
                'string',
            ]
        },
        'Status': 'CREATING'|'CREATE_FAILED'|'ACTIVE'|'UPDATING'|'UPDATE_FAILED'|'DELETING'|'DELETE_FAILED',
        'Endpoint': 'string'
    }
}

Response Structure

  • (dict) --

    Container for response parameters to the CreateVpcEndpoint operation. Contains the configuration and status of the VPC Endpoint being created.

    • VpcEndpoint (dict) --

      Information about the newly created VPC endpoint.

      • VpcEndpointId (string) --

        The unique identifier of the endpoint.

      • VpcEndpointOwner (string) --

        The creator of the endpoint.

      • DomainArn (string) --

        The Amazon Resource Name (ARN) of the domain associated with the endpoint.

      • VpcOptions (dict) --

        Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC endpoint.

        • VPCId (string) --

          The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

        • SubnetIds (list) --

          Specifies the subnets for VPC endpoint.

          • (string) --
        • AvailabilityZones (list) --

          The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

          • (string) --
        • SecurityGroupIds (list) --

          Specifies the security groups for VPC endpoint.

          • (string) --
      • Status (string) --

        The current status of the endpoint.

      • Endpoint (string) --

        The connection endpoint ID for connecting to the domain.

Exceptions

  • ElasticsearchService.Client.exceptions.ConflictException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.LimitExceededException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.BaseException
delete_elasticsearch_domain(**kwargs)

Permanently deletes the specified Elasticsearch domain and all of its data. Once a domain is deleted, it cannot be recovered.

See also: AWS API Documentation

Request Syntax

response = client.delete_elasticsearch_domain(
    DomainName='string'
)
Parameters
DomainName (string) --

[REQUIRED]

The name of the Elasticsearch domain that you want to permanently delete.

Return type
dict
Returns
Response Syntax
{
    'DomainStatus': {
        'DomainId': 'string',
        'DomainName': 'string',
        'ARN': 'string',
        'Created': True|False,
        'Deleted': True|False,
        'Endpoint': 'string',
        'Endpoints': {
            'string': 'string'
        },
        'Processing': True|False,
        'UpgradeProcessing': True|False,
        'ElasticsearchVersion': 'string',
        'ElasticsearchClusterConfig': {
            'InstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
            'InstanceCount': 123,
            'DedicatedMasterEnabled': True|False,
            'ZoneAwarenessEnabled': True|False,
            'ZoneAwarenessConfig': {
                'AvailabilityZoneCount': 123
            },
            'DedicatedMasterType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
            'DedicatedMasterCount': 123,
            'WarmEnabled': True|False,
            'WarmType': 'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch',
            'WarmCount': 123,
            'ColdStorageOptions': {
                'Enabled': True|False
            }
        },
        'EBSOptions': {
            'EBSEnabled': True|False,
            'VolumeType': 'standard'|'gp2'|'io1'|'gp3',
            'VolumeSize': 123,
            'Iops': 123,
            'Throughput': 123
        },
        'AccessPolicies': 'string',
        'SnapshotOptions': {
            'AutomatedSnapshotStartHour': 123
        },
        'VPCOptions': {
            'VPCId': 'string',
            'SubnetIds': [
                'string',
            ],
            'AvailabilityZones': [
                'string',
            ],
            'SecurityGroupIds': [
                'string',
            ]
        },
        'CognitoOptions': {
            'Enabled': True|False,
            'UserPoolId': 'string',
            'IdentityPoolId': 'string',
            'RoleArn': 'string'
        },
        'EncryptionAtRestOptions': {
            'Enabled': True|False,
            'KmsKeyId': 'string'
        },
        'NodeToNodeEncryptionOptions': {
            'Enabled': True|False
        },
        'AdvancedOptions': {
            'string': 'string'
        },
        'LogPublishingOptions': {
            'string': {
                'CloudWatchLogsLogGroupArn': 'string',
                'Enabled': True|False
            }
        },
        'ServiceSoftwareOptions': {
            'CurrentVersion': 'string',
            'NewVersion': 'string',
            'UpdateAvailable': True|False,
            'Cancellable': True|False,
            'UpdateStatus': 'PENDING_UPDATE'|'IN_PROGRESS'|'COMPLETED'|'NOT_ELIGIBLE'|'ELIGIBLE',
            'Description': 'string',
            'AutomatedUpdateDate': datetime(2015, 1, 1),
            'OptionalDeployment': True|False
        },
        'DomainEndpointOptions': {
            'EnforceHTTPS': True|False,
            'TLSSecurityPolicy': 'Policy-Min-TLS-1-0-2019-07'|'Policy-Min-TLS-1-2-2019-07',
            'CustomEndpointEnabled': True|False,
            'CustomEndpoint': 'string',
            'CustomEndpointCertificateArn': 'string'
        },
        'AdvancedSecurityOptions': {
            'Enabled': True|False,
            'InternalUserDatabaseEnabled': True|False,
            'SAMLOptions': {
                'Enabled': True|False,
                'Idp': {
                    'MetadataContent': 'string',
                    'EntityId': 'string'
                },
                'SubjectKey': 'string',
                'RolesKey': 'string',
                'SessionTimeoutMinutes': 123
            },
            'AnonymousAuthDisableDate': datetime(2015, 1, 1),
            'AnonymousAuthEnabled': True|False
        },
        'AutoTuneOptions': {
            'State': 'ENABLED'|'DISABLED'|'ENABLE_IN_PROGRESS'|'DISABLE_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_SCHEDULED'|'DISABLED_AND_ROLLBACK_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_COMPLETE'|'DISABLED_AND_ROLLBACK_ERROR'|'ERROR',
            'ErrorMessage': 'string'
        },
        'ChangeProgressDetails': {
            'ChangeId': 'string',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    The result of a DeleteElasticsearchDomain request. Contains the status of the pending deletion, or no status if the domain and all of its resources have been deleted.

    • DomainStatus (dict) --

      The status of the Elasticsearch domain being deleted.

      • DomainId (string) --

        The unique identifier for the specified Elasticsearch domain.

      • DomainName (string) --

        The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

      • ARN (string) --

        The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS Identity and Access Management for more information.

      • Created (boolean) --

        The domain creation status. True if the creation of an Elasticsearch domain is complete. False if domain creation is still in progress.

      • Deleted (boolean) --

        The domain deletion status. True if a delete request has been received for the domain but resource cleanup is still in progress. False if the domain has not been deleted. Once domain deletion is complete, the status of the domain is no longer returned.

      • Endpoint (string) --

        The Elasticsearch domain endpoint that you use to submit index and search requests.

      • Endpoints (dict) --

        Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example key, value : 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com' .

        • (string) --
          • (string) --

            The endpoint to which service requests are submitted. For example, search-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.es.amazonaws.com or doc-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.es.amazonaws.com .

      • Processing (boolean) --

        The status of the Elasticsearch domain configuration. True if Amazon Elasticsearch Service is processing configuration changes. False if the configuration is active.

      • UpgradeProcessing (boolean) --

        The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service is undergoing a version upgrade. False if the configuration is active.

      • ElasticsearchVersion (string) --
      • ElasticsearchClusterConfig (dict) --

        The type and number of instances in the domain cluster.

        • InstanceType (string) --

          The instance type for an Elasticsearch cluster. UltraWarm instance types are not supported for data instances.

        • InstanceCount (integer) --

          The number of instances in the specified domain cluster.

        • DedicatedMasterEnabled (boolean) --

          A boolean value to indicate whether a dedicated master node is enabled. See About Dedicated Master Nodes for more information.

        • ZoneAwarenessEnabled (boolean) --

          A boolean value to indicate whether zone awareness is enabled. See About Zone Awareness for more information.

        • ZoneAwarenessConfig (dict) --

          Specifies the zone awareness configuration for a domain when zone awareness is enabled.

          • AvailabilityZoneCount (integer) --

            An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled

        • DedicatedMasterType (string) --

          The instance type for a dedicated master node.

        • DedicatedMasterCount (integer) --

          Total number of dedicated master nodes, active and on standby, for the cluster.

        • WarmEnabled (boolean) --

          True to enable warm storage.

        • WarmType (string) --

          The instance type for the Elasticsearch cluster's warm nodes.

        • WarmCount (integer) --

          The number of warm nodes in the cluster.

        • ColdStorageOptions (dict) --

          Specifies the ColdStorageOptions config for Elasticsearch Domain

          • Enabled (boolean) --

            Enable cold storage option. Accepted values true or false

      • EBSOptions (dict) --

        The EBSOptions for the specified domain. See Configuring EBS-based Storage for more information.

        • EBSEnabled (boolean) --

          Specifies whether EBS-based storage is enabled.

        • VolumeType (string) --

          Specifies the volume type for EBS-based storage.

        • VolumeSize (integer) --

          Integer to specify the size of an EBS volume.

        • Iops (integer) --

          Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).

        • Throughput (integer) --

          Specifies the Throughput for GP3 EBS volume (SSD).

      • AccessPolicies (string) --

        IAM access policy as a JSON-formatted string.

      • SnapshotOptions (dict) --

        Specifies the status of the SnapshotOptions

        • AutomatedSnapshotStartHour (integer) --

          Specifies the time, in UTC format, when the service takes a daily automated snapshot of the specified Elasticsearch domain. Default value is 0 hours.

      • VPCOptions (dict) --

        The VPCOptions for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.

        • VPCId (string) --

          The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

        • SubnetIds (list) --

          Specifies the subnets for VPC endpoint.

          • (string) --
        • AvailabilityZones (list) --

          The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

          • (string) --
        • SecurityGroupIds (list) --

          Specifies the security groups for VPC endpoint.

          • (string) --
      • CognitoOptions (dict) --

        The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana.

        • Enabled (boolean) --

          Specifies the option to enable Cognito for Kibana authentication.

        • UserPoolId (string) --

          Specifies the Cognito user pool ID for Kibana authentication.

        • IdentityPoolId (string) --

          Specifies the Cognito identity pool ID for Kibana authentication.

        • RoleArn (string) --

          Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.

      • EncryptionAtRestOptions (dict) --

        Specifies the status of the EncryptionAtRestOptions .

        • Enabled (boolean) --

          Specifies the option to enable Encryption At Rest.

        • KmsKeyId (string) --

          Specifies the KMS Key ID for Encryption At Rest options.

      • NodeToNodeEncryptionOptions (dict) --

        Specifies the status of the NodeToNodeEncryptionOptions .

        • Enabled (boolean) --

          Specify true to enable node-to-node encryption.

      • AdvancedOptions (dict) --

        Specifies the status of the AdvancedOptions

        • (string) --
          • (string) --
      • LogPublishingOptions (dict) --

        Log publishing options for the given domain.

        • (string) --

          Type of Log File, it can be one of the following:

          • INDEX_SLOW_LOGS: Index slow logs contain insert requests that took more time than configured index query log threshold to execute.
          • SEARCH_SLOW_LOGS: Search slow logs contain search queries that took more time than configured search query log threshold to execute.
          • ES_APPLICATION_LOGS: Elasticsearch application logs contain information about errors and warnings raised during the operation of the service and can be useful for troubleshooting.
          • AUDIT_LOGS: Audit logs contain records of user requests for access from the domain.
          • (dict) --

            Log Publishing option that is set for given domain. Attributes and their details:

            • CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which log needs to be published.
            • Enabled: Whether the log publishing for given log type is enabled or not
            • CloudWatchLogsLogGroupArn (string) --

              ARN of the Cloudwatch log group to which log needs to be published.

            • Enabled (boolean) --

              Specifies whether given log publishing option is enabled or not.

      • ServiceSoftwareOptions (dict) --

        The current status of the Elasticsearch domain's service software.

        • CurrentVersion (string) --

          The current service software version that is present on the domain.

        • NewVersion (string) --

          The new service software version if one is available.

        • UpdateAvailable (boolean) --

          True if you are able to update you service software version. False if you are not able to update your service software version.

        • Cancellable (boolean) --

          True if you are able to cancel your service software version update. False if you are not able to cancel your service software version.

        • UpdateStatus (string) --

          The status of your service software update. This field can take the following values: ELIGIBLE , PENDING_UPDATE , IN_PROGRESS , COMPLETED , and NOT_ELIGIBLE .

        • Description (string) --

          The description of the UpdateStatus .

        • AutomatedUpdateDate (datetime) --

          Timestamp, in Epoch time, until which you can manually request a service software update. After this date, we automatically update your service software.

        • OptionalDeployment (boolean) --

          True if a service software is never automatically updated. False if a service software is automatically updated after AutomatedUpdateDate .

      • DomainEndpointOptions (dict) --

        The current status of the Elasticsearch domain's endpoint options.

        • EnforceHTTPS (boolean) --

          Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.

        • TLSSecurityPolicy (string) --

          Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain. It can be one of the following values:

          • Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLSv1.0 and higher.
          • Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2
        • CustomEndpointEnabled (boolean) --

          Specify if custom endpoint should be enabled for the Elasticsearch domain.

        • CustomEndpoint (string) --

          Specify the fully qualified domain for your custom endpoint.

        • CustomEndpointCertificateArn (string) --

          Specify ACM certificate ARN for your custom endpoint.

      • AdvancedSecurityOptions (dict) --

        The current status of the Elasticsearch domain's advanced security options.

        • Enabled (boolean) --

          True if advanced security is enabled.

        • InternalUserDatabaseEnabled (boolean) --

          True if the internal user database is enabled.

        • SAMLOptions (dict) --

          Describes the SAML application configured for a domain.

          • Enabled (boolean) --

            True if SAML is enabled.

          • Idp (dict) --

            Describes the SAML Identity Provider's information.

            • MetadataContent (string) --

              The Metadata of the SAML application in xml format.

            • EntityId (string) --

              The unique Entity ID of the application in SAML Identity Provider.

          • SubjectKey (string) --

            The key used for matching the SAML Subject attribute.

          • RolesKey (string) --

            The key used for matching the SAML Roles attribute.

          • SessionTimeoutMinutes (integer) --

            The duration, in minutes, after which a user session becomes inactive.

        • AnonymousAuthDisableDate (datetime) --

          Specifies the Anonymous Auth Disable Date when Anonymous Auth is enabled.

        • AnonymousAuthEnabled (boolean) --

          True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.

      • AutoTuneOptions (dict) --

        The current status of the Elasticsearch domain's Auto-Tune options.

        • State (string) --

          Specifies the AutoTuneState for the Elasticsearch domain.

        • ErrorMessage (string) --

          Specifies the error message while enabling or disabling the Auto-Tune.

      • ChangeProgressDetails (dict) --

        Specifies change details of the domain configuration change.

        • ChangeId (string) --

          The unique change identifier associated with a specific domain configuration change.

        • Message (string) --

          Contains an optional message associated with the domain configuration change.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
delete_elasticsearch_service_role()

Deletes the service-linked role that Elasticsearch Service uses to manage and maintain VPC domains. Role deletion will fail if any existing VPC domains use the role. You must delete any such Elasticsearch domains before deleting the role. See Deleting Elasticsearch Service Role in VPC Endpoints for Amazon Elasticsearch Service Domains .

See also: AWS API Documentation

Request Syntax

response = client.delete_elasticsearch_service_role()
Returns
None

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ValidationException
delete_inbound_cross_cluster_search_connection(**kwargs)

Allows the destination domain owner to delete an existing inbound cross-cluster search connection.

See also: AWS API Documentation

Request Syntax

response = client.delete_inbound_cross_cluster_search_connection(
    CrossClusterSearchConnectionId='string'
)
Parameters
CrossClusterSearchConnectionId (string) --

[REQUIRED]

The id of the inbound connection that you want to permanently delete.

Return type
dict
Returns
Response Syntax
{
    'CrossClusterSearchConnection': {
        'SourceDomainInfo': {
            'OwnerId': 'string',
            'DomainName': 'string',
            'Region': 'string'
        },
        'DestinationDomainInfo': {
            'OwnerId': 'string',
            'DomainName': 'string',
            'Region': 'string'
        },
        'CrossClusterSearchConnectionId': 'string',
        'ConnectionStatus': {
            'StatusCode': 'PENDING_ACCEPTANCE'|'APPROVED'|'REJECTING'|'REJECTED'|'DELETING'|'DELETED',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    The result of a DeleteInboundCrossClusterSearchConnection operation. Contains details of deleted inbound connection.

    • CrossClusterSearchConnection (dict) --

      Specifies the InboundCrossClusterSearchConnection of deleted inbound connection.

      • SourceDomainInfo (dict) --

        Specifies the DomainInformation for the source Elasticsearch domain.

        • OwnerId (string) --
        • DomainName (string) --

          The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

        • Region (string) --
      • DestinationDomainInfo (dict) --

        Specifies the DomainInformation for the destination Elasticsearch domain.

        • OwnerId (string) --
        • DomainName (string) --

          The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

        • Region (string) --
      • CrossClusterSearchConnectionId (string) --

        Specifies the connection id for the inbound cross-cluster search connection.

      • ConnectionStatus (dict) --

        Specifies the InboundCrossClusterSearchConnectionStatus for the outbound connection.

        • StatusCode (string) --

          The state code for inbound connection. This can be one of the following:

          • PENDING_ACCEPTANCE: Inbound connection is not yet accepted by destination domain owner.
          • APPROVED: Inbound connection is pending acceptance by destination domain owner.
          • REJECTING: Inbound connection rejection is in process.
          • REJECTED: Inbound connection is rejected.
          • DELETING: Inbound connection deletion is in progress.
          • DELETED: Inbound connection is deleted and cannot be used further.
        • Message (string) --

          Specifies verbose information for the inbound connection status.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
delete_outbound_cross_cluster_search_connection(**kwargs)

Allows the source domain owner to delete an existing outbound cross-cluster search connection.

See also: AWS API Documentation

Request Syntax

response = client.delete_outbound_cross_cluster_search_connection(
    CrossClusterSearchConnectionId='string'
)
Parameters
CrossClusterSearchConnectionId (string) --

[REQUIRED]

The id of the outbound connection that you want to permanently delete.

Return type
dict
Returns
Response Syntax
{
    'CrossClusterSearchConnection': {
        'SourceDomainInfo': {
            'OwnerId': 'string',
            'DomainName': 'string',
            'Region': 'string'
        },
        'DestinationDomainInfo': {
            'OwnerId': 'string',
            'DomainName': 'string',
            'Region': 'string'
        },
        'CrossClusterSearchConnectionId': 'string',
        'ConnectionAlias': 'string',
        'ConnectionStatus': {
            'StatusCode': 'PENDING_ACCEPTANCE'|'VALIDATING'|'VALIDATION_FAILED'|'PROVISIONING'|'ACTIVE'|'REJECTED'|'DELETING'|'DELETED',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    The result of a DeleteOutboundCrossClusterSearchConnection operation. Contains details of deleted outbound connection.

    • CrossClusterSearchConnection (dict) --

      Specifies the OutboundCrossClusterSearchConnection of deleted outbound connection.

      • SourceDomainInfo (dict) --

        Specifies the DomainInformation for the source Elasticsearch domain.

        • OwnerId (string) --
        • DomainName (string) --

          The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

        • Region (string) --
      • DestinationDomainInfo (dict) --

        Specifies the DomainInformation for the destination Elasticsearch domain.

        • OwnerId (string) --
        • DomainName (string) --

          The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

        • Region (string) --
      • CrossClusterSearchConnectionId (string) --

        Specifies the connection id for the outbound cross-cluster search connection.

      • ConnectionAlias (string) --

        Specifies the connection alias for the outbound cross-cluster search connection.

      • ConnectionStatus (dict) --

        Specifies the OutboundCrossClusterSearchConnectionStatus for the outbound connection.

        • StatusCode (string) --

          The state code for outbound connection. This can be one of the following:

          • VALIDATING: The outbound connection request is being validated.
          • VALIDATION_FAILED: Validation failed for the connection request.
          • PENDING_ACCEPTANCE: Outbound connection request is validated and is not yet accepted by destination domain owner.
          • PROVISIONING: Outbound connection request is in process.
          • ACTIVE: Outbound connection is active and ready to use.
          • REJECTED: Outbound connection request is rejected by destination domain owner.
          • DELETING: Outbound connection deletion is in progress.
          • DELETED: Outbound connection is deleted and cannot be used further.
        • Message (string) --

          Specifies verbose information for the outbound connection status.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
delete_package(**kwargs)

Delete the package.

See also: AWS API Documentation

Request Syntax

response = client.delete_package(
    PackageID='string'
)
Parameters
PackageID (string) --

[REQUIRED]

Internal ID of the package that you want to delete. Use DescribePackages to find this value.

Return type
dict
Returns
Response Syntax
{
    'PackageDetails': {
        'PackageID': 'string',
        'PackageName': 'string',
        'PackageType': 'TXT-DICTIONARY',
        'PackageDescription': 'string',
        'PackageStatus': 'COPYING'|'COPY_FAILED'|'VALIDATING'|'VALIDATION_FAILED'|'AVAILABLE'|'DELETING'|'DELETED'|'DELETE_FAILED',
        'CreatedAt': datetime(2015, 1, 1),
        'LastUpdatedAt': datetime(2015, 1, 1),
        'AvailablePackageVersion': 'string',
        'ErrorDetails': {
            'ErrorType': 'string',
            'ErrorMessage': 'string'
        }
    }
}

Response Structure

  • (dict) --

    Container for response parameters to DeletePackage operation.

    • PackageDetails (dict) --

      PackageDetails

      • PackageID (string) --

        Internal ID of the package.

      • PackageName (string) --

        User specified name of the package.

      • PackageType (string) --

        Currently supports only TXT-DICTIONARY.

      • PackageDescription (string) --

        User-specified description of the package.

      • PackageStatus (string) --

        Current state of the package. Values are COPYING/COPY_FAILED/AVAILABLE/DELETING/DELETE_FAILED

      • CreatedAt (datetime) --

        Timestamp which tells creation date of the package.

      • LastUpdatedAt (datetime) --
      • AvailablePackageVersion (string) --
      • ErrorDetails (dict) --

        Additional information if the package is in an error state. Null otherwise.

        • ErrorType (string) --
        • ErrorMessage (string) --

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.AccessDeniedException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.ConflictException
delete_vpc_endpoint(**kwargs)

Deletes an Amazon OpenSearch Service-managed interface VPC endpoint.

See also: AWS API Documentation

Request Syntax

response = client.delete_vpc_endpoint(
    VpcEndpointId='string'
)
Parameters
VpcEndpointId (string) --

[REQUIRED]

The unique identifier of the endpoint to be deleted.

Return type
dict
Returns
Response Syntax
{
    'VpcEndpointSummary': {
        'VpcEndpointId': 'string',
        'VpcEndpointOwner': 'string',
        'DomainArn': 'string',
        'Status': 'CREATING'|'CREATE_FAILED'|'ACTIVE'|'UPDATING'|'UPDATE_FAILED'|'DELETING'|'DELETE_FAILED'
    }
}

Response Structure

  • (dict) --

    Container for response parameters to the DeleteVpcEndpoint operation. Contains the summarized detail of the VPC Endpoint being deleted.

    • VpcEndpointSummary (dict) --

      Information about the deleted endpoint, including its current status ( DELETING or DELETE_FAILED ).

      • VpcEndpointId (string) --

        The unique identifier of the endpoint.

      • VpcEndpointOwner (string) --

        The creator of the endpoint.

      • DomainArn (string) --

        The Amazon Resource Name (ARN) of the domain associated with the endpoint.

      • Status (string) --

        The current status of the endpoint.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.BaseException
describe_domain_auto_tunes(**kwargs)

Provides scheduled Auto-Tune action details for the Elasticsearch domain, such as Auto-Tune action type, description, severity, and scheduled date.

See also: AWS API Documentation

Request Syntax

response = client.describe_domain_auto_tunes(
    DomainName='string',
    MaxResults=123,
    NextToken='string'
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    Specifies the domain name for which you want Auto-Tune action details.

  • MaxResults (integer) -- Set this value to limit the number of results returned. If not specified, defaults to 100.
  • NextToken (string) -- NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
Return type

dict

Returns

Response Syntax

{
    'AutoTunes': [
        {
            'AutoTuneType': 'SCHEDULED_ACTION',
            'AutoTuneDetails': {
                'ScheduledAutoTuneDetails': {
                    'Date': datetime(2015, 1, 1),
                    'ActionType': 'JVM_HEAP_SIZE_TUNING'|'JVM_YOUNG_GEN_TUNING',
                    'Action': 'string',
                    'Severity': 'LOW'|'MEDIUM'|'HIGH'
                }
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    The result of DescribeDomainAutoTunes request. See the Developer Guide for more information.

    • AutoTunes (list) --

      Specifies the list of setting adjustments that Auto-Tune has made to the domain. See the Developer Guide for more information.

      • (dict) --

        Specifies Auto-Tune type and Auto-Tune action details.

        • AutoTuneType (string) --

          Specifies Auto-Tune type. Valid value is SCHEDULED_ACTION.

        • AutoTuneDetails (dict) --

          Specifies details of the Auto-Tune action. See the Developer Guide for more information.

          • ScheduledAutoTuneDetails (dict) --

            Specifies details of the scheduled Auto-Tune action. See the Developer Guide for more information.

            • Date (datetime) --

              Specifies timestamp for the Auto-Tune action scheduled for the domain.

            • ActionType (string) --

              Specifies Auto-Tune action type. Valid values are JVM_HEAP_SIZE_TUNING and JVM_YOUNG_GEN_TUNING.

            • Action (string) --

              Specifies Auto-Tune action description.

            • Severity (string) --

              Specifies Auto-Tune action severity. Valid values are LOW, MEDIUM and HIGH.

    • NextToken (string) --

      Specifies an identifier to allow retrieval of paginated results.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
describe_domain_change_progress(**kwargs)

Returns information about the current blue/green deployment happening on a domain, including a change ID, status, and progress stages.

See also: AWS API Documentation

Request Syntax

response = client.describe_domain_change_progress(
    DomainName='string',
    ChangeId='string'
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    The domain you want to get the progress information about.

  • ChangeId (string) -- The specific change ID for which you want to get progress information. This is an optional parameter. If omitted, the service returns information about the most recent configuration change.
Return type

dict

Returns

Response Syntax

{
    'ChangeProgressStatus': {
        'ChangeId': 'string',
        'StartTime': datetime(2015, 1, 1),
        'Status': 'PENDING'|'PROCESSING'|'COMPLETED'|'FAILED',
        'PendingProperties': [
            'string',
        ],
        'CompletedProperties': [
            'string',
        ],
        'TotalNumberOfStages': 123,
        'ChangeProgressStages': [
            {
                'Name': 'string',
                'Status': 'string',
                'Description': 'string',
                'LastUpdated': datetime(2015, 1, 1)
            },
        ]
    }
}

Response Structure

  • (dict) --

    The result of a DescribeDomainChangeProgress request. Contains the progress information of the requested domain change.

    • ChangeProgressStatus (dict) --

      Progress information for the configuration change that is requested in the DescribeDomainChangeProgress request.

      • ChangeId (string) --

        The unique change identifier associated with a specific domain configuration change.

      • StartTime (datetime) --

        The time at which the configuration change is made on the domain.

      • Status (string) --

        The overall status of the domain configuration change. This field can take the following values: PENDING , PROCESSING , COMPLETED and FAILED

      • PendingProperties (list) --

        The list of properties involved in the domain configuration change that are still in pending.

        • (string) --
      • CompletedProperties (list) --

        The list of properties involved in the domain configuration change that are completed.

        • (string) --
      • TotalNumberOfStages (integer) --

        The total number of stages required for the configuration change.

      • ChangeProgressStages (list) --

        The specific stages that the domain is going through to perform the configuration change.

        • (dict) --

          A progress stage details of a specific domain configuration change.

          • Name (string) --

            The name of the specific progress stage.

          • Status (string) --

            The overall status of a specific progress stage.

          • Description (string) --

            The description of the progress stage.

          • LastUpdated (datetime) --

            The last updated timestamp of the progress stage.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
describe_elasticsearch_domain(**kwargs)

Returns domain configuration information about the specified Elasticsearch domain, including the domain ID, domain endpoint, and domain ARN.

See also: AWS API Documentation

Request Syntax

response = client.describe_elasticsearch_domain(
    DomainName='string'
)
Parameters
DomainName (string) --

[REQUIRED]

The name of the Elasticsearch domain for which you want information.

Return type
dict
Returns
Response Syntax
{
    'DomainStatus': {
        'DomainId': 'string',
        'DomainName': 'string',
        'ARN': 'string',
        'Created': True|False,
        'Deleted': True|False,
        'Endpoint': 'string',
        'Endpoints': {
            'string': 'string'
        },
        'Processing': True|False,
        'UpgradeProcessing': True|False,
        'ElasticsearchVersion': 'string',
        'ElasticsearchClusterConfig': {
            'InstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
            'InstanceCount': 123,
            'DedicatedMasterEnabled': True|False,
            'ZoneAwarenessEnabled': True|False,
            'ZoneAwarenessConfig': {
                'AvailabilityZoneCount': 123
            },
            'DedicatedMasterType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
            'DedicatedMasterCount': 123,
            'WarmEnabled': True|False,
            'WarmType': 'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch',
            'WarmCount': 123,
            'ColdStorageOptions': {
                'Enabled': True|False
            }
        },
        'EBSOptions': {
            'EBSEnabled': True|False,
            'VolumeType': 'standard'|'gp2'|'io1'|'gp3',
            'VolumeSize': 123,
            'Iops': 123,
            'Throughput': 123
        },
        'AccessPolicies': 'string',
        'SnapshotOptions': {
            'AutomatedSnapshotStartHour': 123
        },
        'VPCOptions': {
            'VPCId': 'string',
            'SubnetIds': [
                'string',
            ],
            'AvailabilityZones': [
                'string',
            ],
            'SecurityGroupIds': [
                'string',
            ]
        },
        'CognitoOptions': {
            'Enabled': True|False,
            'UserPoolId': 'string',
            'IdentityPoolId': 'string',
            'RoleArn': 'string'
        },
        'EncryptionAtRestOptions': {
            'Enabled': True|False,
            'KmsKeyId': 'string'
        },
        'NodeToNodeEncryptionOptions': {
            'Enabled': True|False
        },
        'AdvancedOptions': {
            'string': 'string'
        },
        'LogPublishingOptions': {
            'string': {
                'CloudWatchLogsLogGroupArn': 'string',
                'Enabled': True|False
            }
        },
        'ServiceSoftwareOptions': {
            'CurrentVersion': 'string',
            'NewVersion': 'string',
            'UpdateAvailable': True|False,
            'Cancellable': True|False,
            'UpdateStatus': 'PENDING_UPDATE'|'IN_PROGRESS'|'COMPLETED'|'NOT_ELIGIBLE'|'ELIGIBLE',
            'Description': 'string',
            'AutomatedUpdateDate': datetime(2015, 1, 1),
            'OptionalDeployment': True|False
        },
        'DomainEndpointOptions': {
            'EnforceHTTPS': True|False,
            'TLSSecurityPolicy': 'Policy-Min-TLS-1-0-2019-07'|'Policy-Min-TLS-1-2-2019-07',
            'CustomEndpointEnabled': True|False,
            'CustomEndpoint': 'string',
            'CustomEndpointCertificateArn': 'string'
        },
        'AdvancedSecurityOptions': {
            'Enabled': True|False,
            'InternalUserDatabaseEnabled': True|False,
            'SAMLOptions': {
                'Enabled': True|False,
                'Idp': {
                    'MetadataContent': 'string',
                    'EntityId': 'string'
                },
                'SubjectKey': 'string',
                'RolesKey': 'string',
                'SessionTimeoutMinutes': 123
            },
            'AnonymousAuthDisableDate': datetime(2015, 1, 1),
            'AnonymousAuthEnabled': True|False
        },
        'AutoTuneOptions': {
            'State': 'ENABLED'|'DISABLED'|'ENABLE_IN_PROGRESS'|'DISABLE_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_SCHEDULED'|'DISABLED_AND_ROLLBACK_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_COMPLETE'|'DISABLED_AND_ROLLBACK_ERROR'|'ERROR',
            'ErrorMessage': 'string'
        },
        'ChangeProgressDetails': {
            'ChangeId': 'string',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    The result of a DescribeElasticsearchDomain request. Contains the status of the domain specified in the request.

    • DomainStatus (dict) --

      The current status of the Elasticsearch domain.

      • DomainId (string) --

        The unique identifier for the specified Elasticsearch domain.

      • DomainName (string) --

        The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

      • ARN (string) --

        The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS Identity and Access Management for more information.

      • Created (boolean) --

        The domain creation status. True if the creation of an Elasticsearch domain is complete. False if domain creation is still in progress.

      • Deleted (boolean) --

        The domain deletion status. True if a delete request has been received for the domain but resource cleanup is still in progress. False if the domain has not been deleted. Once domain deletion is complete, the status of the domain is no longer returned.

      • Endpoint (string) --

        The Elasticsearch domain endpoint that you use to submit index and search requests.

      • Endpoints (dict) --

        Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example key, value : 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com' .

        • (string) --
          • (string) --

            The endpoint to which service requests are submitted. For example, search-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.es.amazonaws.com or doc-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.es.amazonaws.com .

      • Processing (boolean) --

        The status of the Elasticsearch domain configuration. True if Amazon Elasticsearch Service is processing configuration changes. False if the configuration is active.

      • UpgradeProcessing (boolean) --

        The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service is undergoing a version upgrade. False if the configuration is active.

      • ElasticsearchVersion (string) --
      • ElasticsearchClusterConfig (dict) --

        The type and number of instances in the domain cluster.

        • InstanceType (string) --

          The instance type for an Elasticsearch cluster. UltraWarm instance types are not supported for data instances.

        • InstanceCount (integer) --

          The number of instances in the specified domain cluster.

        • DedicatedMasterEnabled (boolean) --

          A boolean value to indicate whether a dedicated master node is enabled. See About Dedicated Master Nodes for more information.

        • ZoneAwarenessEnabled (boolean) --

          A boolean value to indicate whether zone awareness is enabled. See About Zone Awareness for more information.

        • ZoneAwarenessConfig (dict) --

          Specifies the zone awareness configuration for a domain when zone awareness is enabled.

          • AvailabilityZoneCount (integer) --

            An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled

        • DedicatedMasterType (string) --

          The instance type for a dedicated master node.

        • DedicatedMasterCount (integer) --

          Total number of dedicated master nodes, active and on standby, for the cluster.

        • WarmEnabled (boolean) --

          True to enable warm storage.

        • WarmType (string) --

          The instance type for the Elasticsearch cluster's warm nodes.

        • WarmCount (integer) --

          The number of warm nodes in the cluster.

        • ColdStorageOptions (dict) --

          Specifies the ColdStorageOptions config for Elasticsearch Domain

          • Enabled (boolean) --

            Enable cold storage option. Accepted values true or false

      • EBSOptions (dict) --

        The EBSOptions for the specified domain. See Configuring EBS-based Storage for more information.

        • EBSEnabled (boolean) --

          Specifies whether EBS-based storage is enabled.

        • VolumeType (string) --

          Specifies the volume type for EBS-based storage.

        • VolumeSize (integer) --

          Integer to specify the size of an EBS volume.

        • Iops (integer) --

          Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).

        • Throughput (integer) --

          Specifies the Throughput for GP3 EBS volume (SSD).

      • AccessPolicies (string) --

        IAM access policy as a JSON-formatted string.

      • SnapshotOptions (dict) --

        Specifies the status of the SnapshotOptions

        • AutomatedSnapshotStartHour (integer) --

          Specifies the time, in UTC format, when the service takes a daily automated snapshot of the specified Elasticsearch domain. Default value is 0 hours.

      • VPCOptions (dict) --

        The VPCOptions for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.

        • VPCId (string) --

          The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

        • SubnetIds (list) --

          Specifies the subnets for VPC endpoint.

          • (string) --
        • AvailabilityZones (list) --

          The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

          • (string) --
        • SecurityGroupIds (list) --

          Specifies the security groups for VPC endpoint.

          • (string) --
      • CognitoOptions (dict) --

        The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana.

        • Enabled (boolean) --

          Specifies the option to enable Cognito for Kibana authentication.

        • UserPoolId (string) --

          Specifies the Cognito user pool ID for Kibana authentication.

        • IdentityPoolId (string) --

          Specifies the Cognito identity pool ID for Kibana authentication.

        • RoleArn (string) --

          Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.

      • EncryptionAtRestOptions (dict) --

        Specifies the status of the EncryptionAtRestOptions .

        • Enabled (boolean) --

          Specifies the option to enable Encryption At Rest.

        • KmsKeyId (string) --

          Specifies the KMS Key ID for Encryption At Rest options.

      • NodeToNodeEncryptionOptions (dict) --

        Specifies the status of the NodeToNodeEncryptionOptions .

        • Enabled (boolean) --

          Specify true to enable node-to-node encryption.

      • AdvancedOptions (dict) --

        Specifies the status of the AdvancedOptions

        • (string) --
          • (string) --
      • LogPublishingOptions (dict) --

        Log publishing options for the given domain.

        • (string) --

          Type of Log File, it can be one of the following:

          • INDEX_SLOW_LOGS: Index slow logs contain insert requests that took more time than configured index query log threshold to execute.
          • SEARCH_SLOW_LOGS: Search slow logs contain search queries that took more time than configured search query log threshold to execute.
          • ES_APPLICATION_LOGS: Elasticsearch application logs contain information about errors and warnings raised during the operation of the service and can be useful for troubleshooting.
          • AUDIT_LOGS: Audit logs contain records of user requests for access from the domain.
          • (dict) --

            Log Publishing option that is set for given domain. Attributes and their details:

            • CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which log needs to be published.
            • Enabled: Whether the log publishing for given log type is enabled or not
            • CloudWatchLogsLogGroupArn (string) --

              ARN of the Cloudwatch log group to which log needs to be published.

            • Enabled (boolean) --

              Specifies whether given log publishing option is enabled or not.

      • ServiceSoftwareOptions (dict) --

        The current status of the Elasticsearch domain's service software.

        • CurrentVersion (string) --

          The current service software version that is present on the domain.

        • NewVersion (string) --

          The new service software version if one is available.

        • UpdateAvailable (boolean) --

          True if you are able to update you service software version. False if you are not able to update your service software version.

        • Cancellable (boolean) --

          True if you are able to cancel your service software version update. False if you are not able to cancel your service software version.

        • UpdateStatus (string) --

          The status of your service software update. This field can take the following values: ELIGIBLE , PENDING_UPDATE , IN_PROGRESS , COMPLETED , and NOT_ELIGIBLE .

        • Description (string) --

          The description of the UpdateStatus .

        • AutomatedUpdateDate (datetime) --

          Timestamp, in Epoch time, until which you can manually request a service software update. After this date, we automatically update your service software.

        • OptionalDeployment (boolean) --

          True if a service software is never automatically updated. False if a service software is automatically updated after AutomatedUpdateDate .

      • DomainEndpointOptions (dict) --

        The current status of the Elasticsearch domain's endpoint options.

        • EnforceHTTPS (boolean) --

          Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.

        • TLSSecurityPolicy (string) --

          Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain. It can be one of the following values:

          • Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLSv1.0 and higher.
          • Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2
        • CustomEndpointEnabled (boolean) --

          Specify if custom endpoint should be enabled for the Elasticsearch domain.

        • CustomEndpoint (string) --

          Specify the fully qualified domain for your custom endpoint.

        • CustomEndpointCertificateArn (string) --

          Specify ACM certificate ARN for your custom endpoint.

      • AdvancedSecurityOptions (dict) --

        The current status of the Elasticsearch domain's advanced security options.

        • Enabled (boolean) --

          True if advanced security is enabled.

        • InternalUserDatabaseEnabled (boolean) --

          True if the internal user database is enabled.

        • SAMLOptions (dict) --

          Describes the SAML application configured for a domain.

          • Enabled (boolean) --

            True if SAML is enabled.

          • Idp (dict) --

            Describes the SAML Identity Provider's information.

            • MetadataContent (string) --

              The Metadata of the SAML application in xml format.

            • EntityId (string) --

              The unique Entity ID of the application in SAML Identity Provider.

          • SubjectKey (string) --

            The key used for matching the SAML Subject attribute.

          • RolesKey (string) --

            The key used for matching the SAML Roles attribute.

          • SessionTimeoutMinutes (integer) --

            The duration, in minutes, after which a user session becomes inactive.

        • AnonymousAuthDisableDate (datetime) --

          Specifies the Anonymous Auth Disable Date when Anonymous Auth is enabled.

        • AnonymousAuthEnabled (boolean) --

          True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.

      • AutoTuneOptions (dict) --

        The current status of the Elasticsearch domain's Auto-Tune options.

        • State (string) --

          Specifies the AutoTuneState for the Elasticsearch domain.

        • ErrorMessage (string) --

          Specifies the error message while enabling or disabling the Auto-Tune.

      • ChangeProgressDetails (dict) --

        Specifies change details of the domain configuration change.

        • ChangeId (string) --

          The unique change identifier associated with a specific domain configuration change.

        • Message (string) --

          Contains an optional message associated with the domain configuration change.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
describe_elasticsearch_domain_config(**kwargs)

Provides cluster configuration information about the specified Elasticsearch domain, such as the state, creation date, update version, and update date for cluster options.

See also: AWS API Documentation

Request Syntax

response = client.describe_elasticsearch_domain_config(
    DomainName='string'
)
Parameters
DomainName (string) --

[REQUIRED]

The Elasticsearch domain that you want to get information about.

Return type
dict
Returns
Response Syntax
{
    'DomainConfig': {
        'ElasticsearchVersion': {
            'Options': 'string',
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'ElasticsearchClusterConfig': {
            'Options': {
                'InstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
                'InstanceCount': 123,
                'DedicatedMasterEnabled': True|False,
                'ZoneAwarenessEnabled': True|False,
                'ZoneAwarenessConfig': {
                    'AvailabilityZoneCount': 123
                },
                'DedicatedMasterType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
                'DedicatedMasterCount': 123,
                'WarmEnabled': True|False,
                'WarmType': 'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch',
                'WarmCount': 123,
                'ColdStorageOptions': {
                    'Enabled': True|False
                }
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'EBSOptions': {
            'Options': {
                'EBSEnabled': True|False,
                'VolumeType': 'standard'|'gp2'|'io1'|'gp3',
                'VolumeSize': 123,
                'Iops': 123,
                'Throughput': 123
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'AccessPolicies': {
            'Options': 'string',
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'SnapshotOptions': {
            'Options': {
                'AutomatedSnapshotStartHour': 123
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'VPCOptions': {
            'Options': {
                'VPCId': 'string',
                'SubnetIds': [
                    'string',
                ],
                'AvailabilityZones': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ]
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'CognitoOptions': {
            'Options': {
                'Enabled': True|False,
                'UserPoolId': 'string',
                'IdentityPoolId': 'string',
                'RoleArn': 'string'
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'EncryptionAtRestOptions': {
            'Options': {
                'Enabled': True|False,
                'KmsKeyId': 'string'
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'NodeToNodeEncryptionOptions': {
            'Options': {
                'Enabled': True|False
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'AdvancedOptions': {
            'Options': {
                'string': 'string'
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'LogPublishingOptions': {
            'Options': {
                'string': {
                    'CloudWatchLogsLogGroupArn': 'string',
                    'Enabled': True|False
                }
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'DomainEndpointOptions': {
            'Options': {
                'EnforceHTTPS': True|False,
                'TLSSecurityPolicy': 'Policy-Min-TLS-1-0-2019-07'|'Policy-Min-TLS-1-2-2019-07',
                'CustomEndpointEnabled': True|False,
                'CustomEndpoint': 'string',
                'CustomEndpointCertificateArn': 'string'
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'AdvancedSecurityOptions': {
            'Options': {
                'Enabled': True|False,
                'InternalUserDatabaseEnabled': True|False,
                'SAMLOptions': {
                    'Enabled': True|False,
                    'Idp': {
                        'MetadataContent': 'string',
                        'EntityId': 'string'
                    },
                    'SubjectKey': 'string',
                    'RolesKey': 'string',
                    'SessionTimeoutMinutes': 123
                },
                'AnonymousAuthDisableDate': datetime(2015, 1, 1),
                'AnonymousAuthEnabled': True|False
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'AutoTuneOptions': {
            'Options': {
                'DesiredState': 'ENABLED'|'DISABLED',
                'RollbackOnDisable': 'NO_ROLLBACK'|'DEFAULT_ROLLBACK',
                'MaintenanceSchedules': [
                    {
                        'StartAt': datetime(2015, 1, 1),
                        'Duration': {
                            'Value': 123,
                            'Unit': 'HOURS'
                        },
                        'CronExpressionForRecurrence': 'string'
                    },
                ]
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'ENABLED'|'DISABLED'|'ENABLE_IN_PROGRESS'|'DISABLE_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_SCHEDULED'|'DISABLED_AND_ROLLBACK_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_COMPLETE'|'DISABLED_AND_ROLLBACK_ERROR'|'ERROR',
                'ErrorMessage': 'string',
                'PendingDeletion': True|False
            }
        },
        'ChangeProgressDetails': {
            'ChangeId': 'string',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    The result of a DescribeElasticsearchDomainConfig request. Contains the configuration information of the requested domain.

    • DomainConfig (dict) --

      The configuration information of the domain requested in the DescribeElasticsearchDomainConfig request.

      • ElasticsearchVersion (dict) --

        String of format X.Y to specify version for the Elasticsearch domain.

        • Options (string) --

          Specifies the Elasticsearch version for the specified Elasticsearch domain.

        • Status (dict) --

          Specifies the status of the Elasticsearch version options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • ElasticsearchClusterConfig (dict) --

        Specifies the ElasticsearchClusterConfig for the Elasticsearch domain.

        • Options (dict) --

          Specifies the cluster configuration for the specified Elasticsearch domain.

          • InstanceType (string) --

            The instance type for an Elasticsearch cluster. UltraWarm instance types are not supported for data instances.

          • InstanceCount (integer) --

            The number of instances in the specified domain cluster.

          • DedicatedMasterEnabled (boolean) --

            A boolean value to indicate whether a dedicated master node is enabled. See About Dedicated Master Nodes for more information.

          • ZoneAwarenessEnabled (boolean) --

            A boolean value to indicate whether zone awareness is enabled. See About Zone Awareness for more information.

          • ZoneAwarenessConfig (dict) --

            Specifies the zone awareness configuration for a domain when zone awareness is enabled.

            • AvailabilityZoneCount (integer) --

              An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled

          • DedicatedMasterType (string) --

            The instance type for a dedicated master node.

          • DedicatedMasterCount (integer) --

            Total number of dedicated master nodes, active and on standby, for the cluster.

          • WarmEnabled (boolean) --

            True to enable warm storage.

          • WarmType (string) --

            The instance type for the Elasticsearch cluster's warm nodes.

          • WarmCount (integer) --

            The number of warm nodes in the cluster.

          • ColdStorageOptions (dict) --

            Specifies the ColdStorageOptions config for Elasticsearch Domain

            • Enabled (boolean) --

              Enable cold storage option. Accepted values true or false

        • Status (dict) --

          Specifies the status of the configuration for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • EBSOptions (dict) --

        Specifies the EBSOptions for the Elasticsearch domain.

        • Options (dict) --

          Specifies the EBS options for the specified Elasticsearch domain.

          • EBSEnabled (boolean) --

            Specifies whether EBS-based storage is enabled.

          • VolumeType (string) --

            Specifies the volume type for EBS-based storage.

          • VolumeSize (integer) --

            Integer to specify the size of an EBS volume.

          • Iops (integer) --

            Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).

          • Throughput (integer) --

            Specifies the Throughput for GP3 EBS volume (SSD).

        • Status (dict) --

          Specifies the status of the EBS options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • AccessPolicies (dict) --

        IAM access policy as a JSON-formatted string.

        • Options (string) --

          The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policies for more information.

        • Status (dict) --

          The status of the access policy for the Elasticsearch domain. See OptionStatus for the status information that's included.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • SnapshotOptions (dict) --

        Specifies the SnapshotOptions for the Elasticsearch domain.

        • Options (dict) --

          Specifies the daily snapshot options specified for the Elasticsearch domain.

          • AutomatedSnapshotStartHour (integer) --

            Specifies the time, in UTC format, when the service takes a daily automated snapshot of the specified Elasticsearch domain. Default value is 0 hours.

        • Status (dict) --

          Specifies the status of a daily automated snapshot.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • VPCOptions (dict) --

        The VPCOptions for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.

        • Options (dict) --

          Specifies the VPC options for the specified Elasticsearch domain.

          • VPCId (string) --

            The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

          • SubnetIds (list) --

            Specifies the subnets for VPC endpoint.

            • (string) --
          • AvailabilityZones (list) --

            The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

            • (string) --
          • SecurityGroupIds (list) --

            Specifies the security groups for VPC endpoint.

            • (string) --
        • Status (dict) --

          Specifies the status of the VPC options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • CognitoOptions (dict) --

        The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana.

        • Options (dict) --

          Specifies the Cognito options for the specified Elasticsearch domain.

          • Enabled (boolean) --

            Specifies the option to enable Cognito for Kibana authentication.

          • UserPoolId (string) --

            Specifies the Cognito user pool ID for Kibana authentication.

          • IdentityPoolId (string) --

            Specifies the Cognito identity pool ID for Kibana authentication.

          • RoleArn (string) --

            Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.

        • Status (dict) --

          Specifies the status of the Cognito options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • EncryptionAtRestOptions (dict) --

        Specifies the EncryptionAtRestOptions for the Elasticsearch domain.

        • Options (dict) --

          Specifies the Encryption At Rest options for the specified Elasticsearch domain.

          • Enabled (boolean) --

            Specifies the option to enable Encryption At Rest.

          • KmsKeyId (string) --

            Specifies the KMS Key ID for Encryption At Rest options.

        • Status (dict) --

          Specifies the status of the Encryption At Rest options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • NodeToNodeEncryptionOptions (dict) --

        Specifies the NodeToNodeEncryptionOptions for the Elasticsearch domain.

        • Options (dict) --

          Specifies the node-to-node encryption options for the specified Elasticsearch domain.

          • Enabled (boolean) --

            Specify true to enable node-to-node encryption.

        • Status (dict) --

          Specifies the status of the node-to-node encryption options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • AdvancedOptions (dict) --

        Specifies the AdvancedOptions for the domain. See Configuring Advanced Options for more information.

        • Options (dict) --

          Specifies the status of advanced options for the specified Elasticsearch domain.

          • (string) --
            • (string) --
        • Status (dict) --

          Specifies the status of OptionStatus for advanced options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • LogPublishingOptions (dict) --

        Log publishing options for the given domain.

        • Options (dict) --

          The log publishing options configured for the Elasticsearch domain.

          • (string) --

            Type of Log File, it can be one of the following:

            • INDEX_SLOW_LOGS: Index slow logs contain insert requests that took more time than configured index query log threshold to execute.
            • SEARCH_SLOW_LOGS: Search slow logs contain search queries that took more time than configured search query log threshold to execute.
            • ES_APPLICATION_LOGS: Elasticsearch application logs contain information about errors and warnings raised during the operation of the service and can be useful for troubleshooting.
            • AUDIT_LOGS: Audit logs contain records of user requests for access from the domain.
            • (dict) --

              Log Publishing option that is set for given domain. Attributes and their details:

              • CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which log needs to be published.
              • Enabled: Whether the log publishing for given log type is enabled or not
              • CloudWatchLogsLogGroupArn (string) --

                ARN of the Cloudwatch log group to which log needs to be published.

              • Enabled (boolean) --

                Specifies whether given log publishing option is enabled or not.

        • Status (dict) --

          The status of the log publishing options for the Elasticsearch domain. See OptionStatus for the status information that's included.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • DomainEndpointOptions (dict) --

        Specifies the DomainEndpointOptions for the Elasticsearch domain.

        • Options (dict) --

          Options to configure endpoint for the Elasticsearch domain.

          • EnforceHTTPS (boolean) --

            Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.

          • TLSSecurityPolicy (string) --

            Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain. It can be one of the following values:

            • Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLSv1.0 and higher.
            • Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2
          • CustomEndpointEnabled (boolean) --

            Specify if custom endpoint should be enabled for the Elasticsearch domain.

          • CustomEndpoint (string) --

            Specify the fully qualified domain for your custom endpoint.

          • CustomEndpointCertificateArn (string) --

            Specify ACM certificate ARN for your custom endpoint.

        • Status (dict) --

          The status of the endpoint options for the Elasticsearch domain. See OptionStatus for the status information that's included.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • AdvancedSecurityOptions (dict) --

        Specifies AdvancedSecurityOptions for the domain.

        • Options (dict) --

          Specifies advanced security options for the specified Elasticsearch domain.

          • Enabled (boolean) --

            True if advanced security is enabled.

          • InternalUserDatabaseEnabled (boolean) --

            True if the internal user database is enabled.

          • SAMLOptions (dict) --

            Describes the SAML application configured for a domain.

            • Enabled (boolean) --

              True if SAML is enabled.

            • Idp (dict) --

              Describes the SAML Identity Provider's information.

              • MetadataContent (string) --

                The Metadata of the SAML application in xml format.

              • EntityId (string) --

                The unique Entity ID of the application in SAML Identity Provider.

            • SubjectKey (string) --

              The key used for matching the SAML Subject attribute.

            • RolesKey (string) --

              The key used for matching the SAML Roles attribute.

            • SessionTimeoutMinutes (integer) --

              The duration, in minutes, after which a user session becomes inactive.

          • AnonymousAuthDisableDate (datetime) --

            Specifies the Anonymous Auth Disable Date when Anonymous Auth is enabled.

          • AnonymousAuthEnabled (boolean) --

            True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.

        • Status (dict) --

          Status of the advanced security options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • AutoTuneOptions (dict) --

        Specifies AutoTuneOptions for the domain.

        • Options (dict) --

          Specifies Auto-Tune options for the specified Elasticsearch domain.

          • DesiredState (string) --

            Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED.

          • RollbackOnDisable (string) --

            Specifies the rollback state while disabling Auto-Tune for the domain. Valid values are NO_ROLLBACK, DEFAULT_ROLLBACK.

          • MaintenanceSchedules (list) --

            Specifies list of maitenance schedules. See the Developer Guide for more information.

            • (dict) --

              Specifies Auto-Tune maitenance schedule. See the Developer Guide for more information.

              • StartAt (datetime) --

                Specifies timestamp at which Auto-Tune maintenance schedule start.

              • Duration (dict) --

                Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information.

                • Value (integer) --

                  Integer to specify the value of a maintenance schedule duration. See the Developer Guide for more information.

                • Unit (string) --

                  Specifies the unit of a maintenance schedule duration. Valid value is HOURS. See the Developer Guide for more information.

              • CronExpressionForRecurrence (string) --

                Specifies cron expression for a recurring maintenance schedule. See the Developer Guide for more information.

        • Status (dict) --

          Specifies Status of the Auto-Tune options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells Auto-Tune options creation date .

          • UpdateDate (datetime) --

            Timestamp which tells Auto-Tune options last updated time.

          • UpdateVersion (integer) --

            Specifies the Auto-Tune options latest version.

          • State (string) --

            Specifies the AutoTuneState for the Elasticsearch domain.

          • ErrorMessage (string) --

            Specifies the error message while enabling or disabling the Auto-Tune options.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • ChangeProgressDetails (dict) --

        Specifies change details of the domain configuration change.

        • ChangeId (string) --

          The unique change identifier associated with a specific domain configuration change.

        • Message (string) --

          Contains an optional message associated with the domain configuration change.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
describe_elasticsearch_domains(**kwargs)

Returns domain configuration information about the specified Elasticsearch domains, including the domain ID, domain endpoint, and domain ARN.

See also: AWS API Documentation

Request Syntax

response = client.describe_elasticsearch_domains(
    DomainNames=[
        'string',
    ]
)
Parameters
DomainNames (list) --

[REQUIRED]

The Elasticsearch domains for which you want information.

  • (string) --

    The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

Return type
dict
Returns
Response Syntax
{
    'DomainStatusList': [
        {
            'DomainId': 'string',
            'DomainName': 'string',
            'ARN': 'string',
            'Created': True|False,
            'Deleted': True|False,
            'Endpoint': 'string',
            'Endpoints': {
                'string': 'string'
            },
            'Processing': True|False,
            'UpgradeProcessing': True|False,
            'ElasticsearchVersion': 'string',
            'ElasticsearchClusterConfig': {
                'InstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
                'InstanceCount': 123,
                'DedicatedMasterEnabled': True|False,
                'ZoneAwarenessEnabled': True|False,
                'ZoneAwarenessConfig': {
                    'AvailabilityZoneCount': 123
                },
                'DedicatedMasterType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
                'DedicatedMasterCount': 123,
                'WarmEnabled': True|False,
                'WarmType': 'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch',
                'WarmCount': 123,
                'ColdStorageOptions': {
                    'Enabled': True|False
                }
            },
            'EBSOptions': {
                'EBSEnabled': True|False,
                'VolumeType': 'standard'|'gp2'|'io1'|'gp3',
                'VolumeSize': 123,
                'Iops': 123,
                'Throughput': 123
            },
            'AccessPolicies': 'string',
            'SnapshotOptions': {
                'AutomatedSnapshotStartHour': 123
            },
            'VPCOptions': {
                'VPCId': 'string',
                'SubnetIds': [
                    'string',
                ],
                'AvailabilityZones': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ]
            },
            'CognitoOptions': {
                'Enabled': True|False,
                'UserPoolId': 'string',
                'IdentityPoolId': 'string',
                'RoleArn': 'string'
            },
            'EncryptionAtRestOptions': {
                'Enabled': True|False,
                'KmsKeyId': 'string'
            },
            'NodeToNodeEncryptionOptions': {
                'Enabled': True|False
            },
            'AdvancedOptions': {
                'string': 'string'
            },
            'LogPublishingOptions': {
                'string': {
                    'CloudWatchLogsLogGroupArn': 'string',
                    'Enabled': True|False
                }
            },
            'ServiceSoftwareOptions': {
                'CurrentVersion': 'string',
                'NewVersion': 'string',
                'UpdateAvailable': True|False,
                'Cancellable': True|False,
                'UpdateStatus': 'PENDING_UPDATE'|'IN_PROGRESS'|'COMPLETED'|'NOT_ELIGIBLE'|'ELIGIBLE',
                'Description': 'string',
                'AutomatedUpdateDate': datetime(2015, 1, 1),
                'OptionalDeployment': True|False
            },
            'DomainEndpointOptions': {
                'EnforceHTTPS': True|False,
                'TLSSecurityPolicy': 'Policy-Min-TLS-1-0-2019-07'|'Policy-Min-TLS-1-2-2019-07',
                'CustomEndpointEnabled': True|False,
                'CustomEndpoint': 'string',
                'CustomEndpointCertificateArn': 'string'
            },
            'AdvancedSecurityOptions': {
                'Enabled': True|False,
                'InternalUserDatabaseEnabled': True|False,
                'SAMLOptions': {
                    'Enabled': True|False,
                    'Idp': {
                        'MetadataContent': 'string',
                        'EntityId': 'string'
                    },
                    'SubjectKey': 'string',
                    'RolesKey': 'string',
                    'SessionTimeoutMinutes': 123
                },
                'AnonymousAuthDisableDate': datetime(2015, 1, 1),
                'AnonymousAuthEnabled': True|False
            },
            'AutoTuneOptions': {
                'State': 'ENABLED'|'DISABLED'|'ENABLE_IN_PROGRESS'|'DISABLE_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_SCHEDULED'|'DISABLED_AND_ROLLBACK_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_COMPLETE'|'DISABLED_AND_ROLLBACK_ERROR'|'ERROR',
                'ErrorMessage': 'string'
            },
            'ChangeProgressDetails': {
                'ChangeId': 'string',
                'Message': 'string'
            }
        },
    ]
}

Response Structure

  • (dict) --

    The result of a DescribeElasticsearchDomains request. Contains the status of the specified domains or all domains owned by the account.

    • DomainStatusList (list) --

      The status of the domains requested in the DescribeElasticsearchDomains request.

      • (dict) --

        The current status of an Elasticsearch domain.

        • DomainId (string) --

          The unique identifier for the specified Elasticsearch domain.

        • DomainName (string) --

          The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

        • ARN (string) --

          The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS Identity and Access Management for more information.

        • Created (boolean) --

          The domain creation status. True if the creation of an Elasticsearch domain is complete. False if domain creation is still in progress.

        • Deleted (boolean) --

          The domain deletion status. True if a delete request has been received for the domain but resource cleanup is still in progress. False if the domain has not been deleted. Once domain deletion is complete, the status of the domain is no longer returned.

        • Endpoint (string) --

          The Elasticsearch domain endpoint that you use to submit index and search requests.

        • Endpoints (dict) --

          Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example key, value : 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com' .

          • (string) --
            • (string) --

              The endpoint to which service requests are submitted. For example, search-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.es.amazonaws.com or doc-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.es.amazonaws.com .

        • Processing (boolean) --

          The status of the Elasticsearch domain configuration. True if Amazon Elasticsearch Service is processing configuration changes. False if the configuration is active.

        • UpgradeProcessing (boolean) --

          The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service is undergoing a version upgrade. False if the configuration is active.

        • ElasticsearchVersion (string) --
        • ElasticsearchClusterConfig (dict) --

          The type and number of instances in the domain cluster.

          • InstanceType (string) --

            The instance type for an Elasticsearch cluster. UltraWarm instance types are not supported for data instances.

          • InstanceCount (integer) --

            The number of instances in the specified domain cluster.

          • DedicatedMasterEnabled (boolean) --

            A boolean value to indicate whether a dedicated master node is enabled. See About Dedicated Master Nodes for more information.

          • ZoneAwarenessEnabled (boolean) --

            A boolean value to indicate whether zone awareness is enabled. See About Zone Awareness for more information.

          • ZoneAwarenessConfig (dict) --

            Specifies the zone awareness configuration for a domain when zone awareness is enabled.

            • AvailabilityZoneCount (integer) --

              An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled

          • DedicatedMasterType (string) --

            The instance type for a dedicated master node.

          • DedicatedMasterCount (integer) --

            Total number of dedicated master nodes, active and on standby, for the cluster.

          • WarmEnabled (boolean) --

            True to enable warm storage.

          • WarmType (string) --

            The instance type for the Elasticsearch cluster's warm nodes.

          • WarmCount (integer) --

            The number of warm nodes in the cluster.

          • ColdStorageOptions (dict) --

            Specifies the ColdStorageOptions config for Elasticsearch Domain

            • Enabled (boolean) --

              Enable cold storage option. Accepted values true or false

        • EBSOptions (dict) --

          The EBSOptions for the specified domain. See Configuring EBS-based Storage for more information.

          • EBSEnabled (boolean) --

            Specifies whether EBS-based storage is enabled.

          • VolumeType (string) --

            Specifies the volume type for EBS-based storage.

          • VolumeSize (integer) --

            Integer to specify the size of an EBS volume.

          • Iops (integer) --

            Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).

          • Throughput (integer) --

            Specifies the Throughput for GP3 EBS volume (SSD).

        • AccessPolicies (string) --

          IAM access policy as a JSON-formatted string.

        • SnapshotOptions (dict) --

          Specifies the status of the SnapshotOptions

          • AutomatedSnapshotStartHour (integer) --

            Specifies the time, in UTC format, when the service takes a daily automated snapshot of the specified Elasticsearch domain. Default value is 0 hours.

        • VPCOptions (dict) --

          The VPCOptions for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.

          • VPCId (string) --

            The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

          • SubnetIds (list) --

            Specifies the subnets for VPC endpoint.

            • (string) --
          • AvailabilityZones (list) --

            The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

            • (string) --
          • SecurityGroupIds (list) --

            Specifies the security groups for VPC endpoint.

            • (string) --
        • CognitoOptions (dict) --

          The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana.

          • Enabled (boolean) --

            Specifies the option to enable Cognito for Kibana authentication.

          • UserPoolId (string) --

            Specifies the Cognito user pool ID for Kibana authentication.

          • IdentityPoolId (string) --

            Specifies the Cognito identity pool ID for Kibana authentication.

          • RoleArn (string) --

            Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.

        • EncryptionAtRestOptions (dict) --

          Specifies the status of the EncryptionAtRestOptions .

          • Enabled (boolean) --

            Specifies the option to enable Encryption At Rest.

          • KmsKeyId (string) --

            Specifies the KMS Key ID for Encryption At Rest options.

        • NodeToNodeEncryptionOptions (dict) --

          Specifies the status of the NodeToNodeEncryptionOptions .

          • Enabled (boolean) --

            Specify true to enable node-to-node encryption.

        • AdvancedOptions (dict) --

          Specifies the status of the AdvancedOptions

          • (string) --
            • (string) --
        • LogPublishingOptions (dict) --

          Log publishing options for the given domain.

          • (string) --

            Type of Log File, it can be one of the following:

            • INDEX_SLOW_LOGS: Index slow logs contain insert requests that took more time than configured index query log threshold to execute.
            • SEARCH_SLOW_LOGS: Search slow logs contain search queries that took more time than configured search query log threshold to execute.
            • ES_APPLICATION_LOGS: Elasticsearch application logs contain information about errors and warnings raised during the operation of the service and can be useful for troubleshooting.
            • AUDIT_LOGS: Audit logs contain records of user requests for access from the domain.
            • (dict) --

              Log Publishing option that is set for given domain. Attributes and their details:

              • CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which log needs to be published.
              • Enabled: Whether the log publishing for given log type is enabled or not
              • CloudWatchLogsLogGroupArn (string) --

                ARN of the Cloudwatch log group to which log needs to be published.

              • Enabled (boolean) --

                Specifies whether given log publishing option is enabled or not.

        • ServiceSoftwareOptions (dict) --

          The current status of the Elasticsearch domain's service software.

          • CurrentVersion (string) --

            The current service software version that is present on the domain.

          • NewVersion (string) --

            The new service software version if one is available.

          • UpdateAvailable (boolean) --

            True if you are able to update you service software version. False if you are not able to update your service software version.

          • Cancellable (boolean) --

            True if you are able to cancel your service software version update. False if you are not able to cancel your service software version.

          • UpdateStatus (string) --

            The status of your service software update. This field can take the following values: ELIGIBLE , PENDING_UPDATE , IN_PROGRESS , COMPLETED , and NOT_ELIGIBLE .

          • Description (string) --

            The description of the UpdateStatus .

          • AutomatedUpdateDate (datetime) --

            Timestamp, in Epoch time, until which you can manually request a service software update. After this date, we automatically update your service software.

          • OptionalDeployment (boolean) --

            True if a service software is never automatically updated. False if a service software is automatically updated after AutomatedUpdateDate .

        • DomainEndpointOptions (dict) --

          The current status of the Elasticsearch domain's endpoint options.

          • EnforceHTTPS (boolean) --

            Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.

          • TLSSecurityPolicy (string) --

            Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain. It can be one of the following values:

            • Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLSv1.0 and higher.
            • Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2
          • CustomEndpointEnabled (boolean) --

            Specify if custom endpoint should be enabled for the Elasticsearch domain.

          • CustomEndpoint (string) --

            Specify the fully qualified domain for your custom endpoint.

          • CustomEndpointCertificateArn (string) --

            Specify ACM certificate ARN for your custom endpoint.

        • AdvancedSecurityOptions (dict) --

          The current status of the Elasticsearch domain's advanced security options.

          • Enabled (boolean) --

            True if advanced security is enabled.

          • InternalUserDatabaseEnabled (boolean) --

            True if the internal user database is enabled.

          • SAMLOptions (dict) --

            Describes the SAML application configured for a domain.

            • Enabled (boolean) --

              True if SAML is enabled.

            • Idp (dict) --

              Describes the SAML Identity Provider's information.

              • MetadataContent (string) --

                The Metadata of the SAML application in xml format.

              • EntityId (string) --

                The unique Entity ID of the application in SAML Identity Provider.

            • SubjectKey (string) --

              The key used for matching the SAML Subject attribute.

            • RolesKey (string) --

              The key used for matching the SAML Roles attribute.

            • SessionTimeoutMinutes (integer) --

              The duration, in minutes, after which a user session becomes inactive.

          • AnonymousAuthDisableDate (datetime) --

            Specifies the Anonymous Auth Disable Date when Anonymous Auth is enabled.

          • AnonymousAuthEnabled (boolean) --

            True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.

        • AutoTuneOptions (dict) --

          The current status of the Elasticsearch domain's Auto-Tune options.

          • State (string) --

            Specifies the AutoTuneState for the Elasticsearch domain.

          • ErrorMessage (string) --

            Specifies the error message while enabling or disabling the Auto-Tune.

        • ChangeProgressDetails (dict) --

          Specifies change details of the domain configuration change.

          • ChangeId (string) --

            The unique change identifier associated with a specific domain configuration change.

          • Message (string) --

            Contains an optional message associated with the domain configuration change.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ValidationException
describe_elasticsearch_instance_type_limits(**kwargs)

Describe Elasticsearch Limits for a given InstanceType and ElasticsearchVersion. When modifying existing Domain, specify the DomainName to know what Limits are supported for modifying.

See also: AWS API Documentation

Request Syntax

response = client.describe_elasticsearch_instance_type_limits(
    DomainName='string',
    InstanceType='m3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
    ElasticsearchVersion='string'
)
Parameters
  • DomainName (string) -- DomainName represents the name of the Domain that we are trying to modify. This should be present only if we are querying for Elasticsearch Limits for existing domain.
  • InstanceType (string) --

    [REQUIRED]

    The instance type for an Elasticsearch cluster for which Elasticsearch Limits are needed.

  • ElasticsearchVersion (string) --

    [REQUIRED]

    Version of Elasticsearch for which Limits are needed.

Return type

dict

Returns

Response Syntax

{
    'LimitsByRole': {
        'string': {
            'StorageTypes': [
                {
                    'StorageTypeName': 'string',
                    'StorageSubTypeName': 'string',
                    'StorageTypeLimits': [
                        {
                            'LimitName': 'string',
                            'LimitValues': [
                                'string',
                            ]
                        },
                    ]
                },
            ],
            'InstanceLimits': {
                'InstanceCountLimits': {
                    'MinimumInstanceCount': 123,
                    'MaximumInstanceCount': 123
                }
            },
            'AdditionalLimits': [
                {
                    'LimitName': 'string',
                    'LimitValues': [
                        'string',
                    ]
                },
            ]
        }
    }
}

Response Structure

  • (dict) --

    Container for the parameters received from DescribeElasticsearchInstanceTypeLimits operation.

    • LimitsByRole (dict) --

      Map of Role of the Instance and Limits that are applicable. Role performed by given Instance in Elasticsearch can be one of the following:

      • data: If the given InstanceType is used as data node
      • master: If the given InstanceType is used as master node
      • ultra_warm: If the given InstanceType is used as warm node
      • (string) --

        • (dict) --

          Limits for given InstanceType and for each of it's role. Limits contains following StorageTypes, InstanceLimits and AdditionalLimits

          • StorageTypes (list) --

            StorageType represents the list of storage related types and attributes that are available for given InstanceType.

            • (dict) --

              StorageTypes represents the list of storage related types and their attributes that are available for given InstanceType.

              • StorageTypeName (string) --

                Type of the storage. List of available storage options:

                • instance

                Inbuilt storage available for the given Instance * ebs Elastic block storage that would be attached to the given Instance

              • StorageSubTypeName (string) --

                SubType of the given storage type. List of available sub-storage options: For "instance" storageType we wont have any storageSubType, in case of "ebs" storageType we will have following valid storageSubTypes

                • standard
                • gp2
                • gp3
                • io1

                Refer VolumeType for more information regarding above EBS storage options.

              • StorageTypeLimits (list) --

                List of limits that are applicable for given storage type.

                • (dict) --

                  Limits that are applicable for given storage type.

                  • LimitName (string) --

                    Name of storage limits that are applicable for given storage type. If StorageType is ebs, following storage options are applicable

                    • MinimumVolumeSize

                    Minimum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. * MaximumVolumeSize Maximum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. * MaximumIops Maximum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable. * MinimumIops Minimum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable. * MaximumThroughput Maximum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable. * MinimumThroughput Minimum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable.

                  • LimitValues (list) --

                    Values for the StorageTypeLimit$LimitName .

                    • (string) --
          • InstanceLimits (dict) --

            InstanceLimits represents the list of instance related attributes that are available for given InstanceType.

            • InstanceCountLimits (dict) --

              InstanceCountLimits represents the limits on number of instances that be created in Amazon Elasticsearch for given InstanceType.

              • MinimumInstanceCount (integer) --

                Minimum number of Instances that can be instantiated for given InstanceType.

              • MaximumInstanceCount (integer) --

                Maximum number of Instances that can be instantiated for given InstanceType.

          • AdditionalLimits (list) --

            List of additional limits that are specific to a given InstanceType and for each of it's InstanceRole .

            • (dict) --

              List of limits that are specific to a given InstanceType and for each of it's InstanceRole .

              • LimitName (string) --

                Name of Additional Limit is specific to a given InstanceType and for each of it's InstanceRole etc. Attributes and their details:

                • MaximumNumberOfDataNodesSupported

                This attribute will be present in Master node only to specify how much data nodes upto which given ESPartitionInstanceType can support as master node. * MaximumNumberOfDataNodesWithoutMasterNode This attribute will be present in Data node only to specify how much data nodes of given ESPartitionInstanceType upto which you don't need any master nodes to govern them.

              • LimitValues (list) --

                Value for given AdditionalLimit$LimitName .

                • (string) --

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.InvalidTypeException
  • ElasticsearchService.Client.exceptions.LimitExceededException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
describe_inbound_cross_cluster_search_connections(**kwargs)

Lists all the inbound cross-cluster search connections for a destination domain.

See also: AWS API Documentation

Request Syntax

response = client.describe_inbound_cross_cluster_search_connections(
    Filters=[
        {
            'Name': 'string',
            'Values': [
                'string',
            ]
        },
    ],
    MaxResults=123,
    NextToken='string'
)
Parameters
  • Filters (list) --

    A list of filters used to match properties for inbound cross-cluster search connection. Available Filter names for this operation are:

    • cross-cluster-search-connection-id
    • source-domain-info.domain-name
    • source-domain-info.owner-id
    • source-domain-info.region
    • destination-domain-info.domain-name
    • (dict) --

      A filter used to limit results when describing inbound or outbound cross-cluster search connections. Multiple values can be specified per filter. A cross-cluster search connection must match at least one of the specified values for it to be returned from an operation.

      • Name (string) --

        Specifies the name of the filter.

      • Values (list) --

        Contains one or more values for the filter.

        • (string) --
  • MaxResults (integer) -- Set this value to limit the number of results returned. If not specified, defaults to 100.
  • NextToken (string) -- NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
Return type

dict

Returns

Response Syntax

{
    'CrossClusterSearchConnections': [
        {
            'SourceDomainInfo': {
                'OwnerId': 'string',
                'DomainName': 'string',
                'Region': 'string'
            },
            'DestinationDomainInfo': {
                'OwnerId': 'string',
                'DomainName': 'string',
                'Region': 'string'
            },
            'CrossClusterSearchConnectionId': 'string',
            'ConnectionStatus': {
                'StatusCode': 'PENDING_ACCEPTANCE'|'APPROVED'|'REJECTING'|'REJECTED'|'DELETING'|'DELETED',
                'Message': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    The result of a DescribeInboundCrossClusterSearchConnections request. Contains the list of connections matching the filter criteria.

    • CrossClusterSearchConnections (list) --

      Consists of list of InboundCrossClusterSearchConnection matching the specified filter criteria.

      • (dict) --

        Specifies details of an inbound connection.

        • SourceDomainInfo (dict) --

          Specifies the DomainInformation for the source Elasticsearch domain.

          • OwnerId (string) --

          • DomainName (string) --

            The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

          • Region (string) --

        • DestinationDomainInfo (dict) --

          Specifies the DomainInformation for the destination Elasticsearch domain.

          • OwnerId (string) --

          • DomainName (string) --

            The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

          • Region (string) --

        • CrossClusterSearchConnectionId (string) --

          Specifies the connection id for the inbound cross-cluster search connection.

        • ConnectionStatus (dict) --

          Specifies the InboundCrossClusterSearchConnectionStatus for the outbound connection.

          • StatusCode (string) --

            The state code for inbound connection. This can be one of the following:

            • PENDING_ACCEPTANCE: Inbound connection is not yet accepted by destination domain owner.
            • APPROVED: Inbound connection is pending acceptance by destination domain owner.
            • REJECTING: Inbound connection rejection is in process.
            • REJECTED: Inbound connection is rejected.
            • DELETING: Inbound connection deletion is in progress.
            • DELETED: Inbound connection is deleted and cannot be used further.
          • Message (string) --

            Specifies verbose information for the inbound connection status.

    • NextToken (string) --

      If more results are available and NextToken is present, make the next request to the same API with the received NextToken to paginate the remaining results.

Exceptions

  • ElasticsearchService.Client.exceptions.InvalidPaginationTokenException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
describe_outbound_cross_cluster_search_connections(**kwargs)

Lists all the outbound cross-cluster search connections for a source domain.

See also: AWS API Documentation

Request Syntax

response = client.describe_outbound_cross_cluster_search_connections(
    Filters=[
        {
            'Name': 'string',
            'Values': [
                'string',
            ]
        },
    ],
    MaxResults=123,
    NextToken='string'
)
Parameters
  • Filters (list) --

    A list of filters used to match properties for outbound cross-cluster search connection. Available Filter names for this operation are:

    • cross-cluster-search-connection-id
    • destination-domain-info.domain-name
    • destination-domain-info.owner-id
    • destination-domain-info.region
    • source-domain-info.domain-name
    • (dict) --

      A filter used to limit results when describing inbound or outbound cross-cluster search connections. Multiple values can be specified per filter. A cross-cluster search connection must match at least one of the specified values for it to be returned from an operation.

      • Name (string) --

        Specifies the name of the filter.

      • Values (list) --

        Contains one or more values for the filter.

        • (string) --
  • MaxResults (integer) -- Set this value to limit the number of results returned. If not specified, defaults to 100.
  • NextToken (string) -- NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
Return type

dict

Returns

Response Syntax

{
    'CrossClusterSearchConnections': [
        {
            'SourceDomainInfo': {
                'OwnerId': 'string',
                'DomainName': 'string',
                'Region': 'string'
            },
            'DestinationDomainInfo': {
                'OwnerId': 'string',
                'DomainName': 'string',
                'Region': 'string'
            },
            'CrossClusterSearchConnectionId': 'string',
            'ConnectionAlias': 'string',
            'ConnectionStatus': {
                'StatusCode': 'PENDING_ACCEPTANCE'|'VALIDATING'|'VALIDATION_FAILED'|'PROVISIONING'|'ACTIVE'|'REJECTED'|'DELETING'|'DELETED',
                'Message': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    The result of a DescribeOutboundCrossClusterSearchConnections request. Contains the list of connections matching the filter criteria.

    • CrossClusterSearchConnections (list) --

      Consists of list of OutboundCrossClusterSearchConnection matching the specified filter criteria.

      • (dict) --

        Specifies details of an outbound connection.

        • SourceDomainInfo (dict) --

          Specifies the DomainInformation for the source Elasticsearch domain.

          • OwnerId (string) --

          • DomainName (string) --

            The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

          • Region (string) --

        • DestinationDomainInfo (dict) --

          Specifies the DomainInformation for the destination Elasticsearch domain.

          • OwnerId (string) --

          • DomainName (string) --

            The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

          • Region (string) --

        • CrossClusterSearchConnectionId (string) --

          Specifies the connection id for the outbound cross-cluster search connection.

        • ConnectionAlias (string) --

          Specifies the connection alias for the outbound cross-cluster search connection.

        • ConnectionStatus (dict) --

          Specifies the OutboundCrossClusterSearchConnectionStatus for the outbound connection.

          • StatusCode (string) --

            The state code for outbound connection. This can be one of the following:

            • VALIDATING: The outbound connection request is being validated.
            • VALIDATION_FAILED: Validation failed for the connection request.
            • PENDING_ACCEPTANCE: Outbound connection request is validated and is not yet accepted by destination domain owner.
            • PROVISIONING: Outbound connection request is in process.
            • ACTIVE: Outbound connection is active and ready to use.
            • REJECTED: Outbound connection request is rejected by destination domain owner.
            • DELETING: Outbound connection deletion is in progress.
            • DELETED: Outbound connection is deleted and cannot be used further.
          • Message (string) --

            Specifies verbose information for the outbound connection status.

    • NextToken (string) --

      If more results are available and NextToken is present, make the next request to the same API with the received NextToken to paginate the remaining results.

Exceptions

  • ElasticsearchService.Client.exceptions.InvalidPaginationTokenException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
describe_packages(**kwargs)

Describes all packages available to Amazon ES. Includes options for filtering, limiting the number of results, and pagination.

See also: AWS API Documentation

Request Syntax

response = client.describe_packages(
    Filters=[
        {
            'Name': 'PackageID'|'PackageName'|'PackageStatus',
            'Value': [
                'string',
            ]
        },
    ],
    MaxResults=123,
    NextToken='string'
)
Parameters
  • Filters (list) --

    Only returns packages that match the DescribePackagesFilterList values.

    • (dict) --

      Filter to apply in DescribePackage response.

      • Name (string) --

        Any field from PackageDetails .

      • Value (list) --

        A list of values for the specified field.

        • (string) --
  • MaxResults (integer) -- Limits results to a maximum number of packages.
  • NextToken (string) -- Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.
Return type

dict

Returns

Response Syntax

{
    'PackageDetailsList': [
        {
            'PackageID': 'string',
            'PackageName': 'string',
            'PackageType': 'TXT-DICTIONARY',
            'PackageDescription': 'string',
            'PackageStatus': 'COPYING'|'COPY_FAILED'|'VALIDATING'|'VALIDATION_FAILED'|'AVAILABLE'|'DELETING'|'DELETED'|'DELETE_FAILED',
            'CreatedAt': datetime(2015, 1, 1),
            'LastUpdatedAt': datetime(2015, 1, 1),
            'AvailablePackageVersion': 'string',
            'ErrorDetails': {
                'ErrorType': 'string',
                'ErrorMessage': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Container for response returned by DescribePackages operation.

    • PackageDetailsList (list) --

      List of PackageDetails objects.

      • (dict) --

        Basic information about a package.

        • PackageID (string) --

          Internal ID of the package.

        • PackageName (string) --

          User specified name of the package.

        • PackageType (string) --

          Currently supports only TXT-DICTIONARY.

        • PackageDescription (string) --

          User-specified description of the package.

        • PackageStatus (string) --

          Current state of the package. Values are COPYING/COPY_FAILED/AVAILABLE/DELETING/DELETE_FAILED

        • CreatedAt (datetime) --

          Timestamp which tells creation date of the package.

        • LastUpdatedAt (datetime) --

        • AvailablePackageVersion (string) --

        • ErrorDetails (dict) --

          Additional information if the package is in an error state. Null otherwise.

          • ErrorType (string) --
          • ErrorMessage (string) --
    • NextToken (string) --

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.AccessDeniedException
  • ElasticsearchService.Client.exceptions.ValidationException
describe_reserved_elasticsearch_instance_offerings(**kwargs)

Lists available reserved Elasticsearch instance offerings.

See also: AWS API Documentation

Request Syntax

response = client.describe_reserved_elasticsearch_instance_offerings(
    ReservedElasticsearchInstanceOfferingId='string',
    MaxResults=123,
    NextToken='string'
)
Parameters
  • ReservedElasticsearchInstanceOfferingId (string) -- The offering identifier filter value. Use this parameter to show only the available offering that matches the specified reservation identifier.
  • MaxResults (integer) -- Set this value to limit the number of results returned. If not specified, defaults to 100.
  • NextToken (string) -- NextToken should be sent in case if earlier API call produced result containing NextToken. It is used for pagination.
Return type

dict

Returns

Response Syntax

{
    'NextToken': 'string',
    'ReservedElasticsearchInstanceOfferings': [
        {
            'ReservedElasticsearchInstanceOfferingId': 'string',
            'ElasticsearchInstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
            'Duration': 123,
            'FixedPrice': 123.0,
            'UsagePrice': 123.0,
            'CurrencyCode': 'string',
            'PaymentOption': 'ALL_UPFRONT'|'PARTIAL_UPFRONT'|'NO_UPFRONT',
            'RecurringCharges': [
                {
                    'RecurringChargeAmount': 123.0,
                    'RecurringChargeFrequency': 'string'
                },
            ]
        },
    ]
}

Response Structure

  • (dict) --

    Container for results from DescribeReservedElasticsearchInstanceOfferings

    • NextToken (string) --

      Provides an identifier to allow retrieval of paginated results.

    • ReservedElasticsearchInstanceOfferings (list) --

      List of reserved Elasticsearch instance offerings

      • (dict) --

        Details of a reserved Elasticsearch instance offering.

        • ReservedElasticsearchInstanceOfferingId (string) --

          The Elasticsearch reserved instance offering identifier.

        • ElasticsearchInstanceType (string) --

          The Elasticsearch instance type offered by the reserved instance offering.

        • Duration (integer) --

          The duration, in seconds, for which the offering will reserve the Elasticsearch instance.

        • FixedPrice (float) --

          The upfront fixed charge you will pay to purchase the specific reserved Elasticsearch instance offering.

        • UsagePrice (float) --

          The rate you are charged for each hour the domain that is using the offering is running.

        • CurrencyCode (string) --

          The currency code for the reserved Elasticsearch instance offering.

        • PaymentOption (string) --

          Payment option for the reserved Elasticsearch instance offering

        • RecurringCharges (list) --

          The charge to your account regardless of whether you are creating any domains using the instance offering.

          • (dict) --

            Contains the specific price and frequency of a recurring charges for a reserved Elasticsearch instance, or for a reserved Elasticsearch instance offering.

            • RecurringChargeAmount (float) --

              The monetary amount of the recurring charge.

            • RecurringChargeFrequency (string) --

              The frequency of the recurring charge.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.InternalException
describe_reserved_elasticsearch_instances(**kwargs)

Returns information about reserved Elasticsearch instances for this account.

See also: AWS API Documentation

Request Syntax

response = client.describe_reserved_elasticsearch_instances(
    ReservedElasticsearchInstanceId='string',
    MaxResults=123,
    NextToken='string'
)
Parameters
  • ReservedElasticsearchInstanceId (string) -- The reserved instance identifier filter value. Use this parameter to show only the reservation that matches the specified reserved Elasticsearch instance ID.
  • MaxResults (integer) -- Set this value to limit the number of results returned. If not specified, defaults to 100.
  • NextToken (string) -- NextToken should be sent in case if earlier API call produced result containing NextToken. It is used for pagination.
Return type

dict

Returns

Response Syntax

{
    'NextToken': 'string',
    'ReservedElasticsearchInstances': [
        {
            'ReservationName': 'string',
            'ReservedElasticsearchInstanceId': 'string',
            'ReservedElasticsearchInstanceOfferingId': 'string',
            'ElasticsearchInstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
            'StartTime': datetime(2015, 1, 1),
            'Duration': 123,
            'FixedPrice': 123.0,
            'UsagePrice': 123.0,
            'CurrencyCode': 'string',
            'ElasticsearchInstanceCount': 123,
            'State': 'string',
            'PaymentOption': 'ALL_UPFRONT'|'PARTIAL_UPFRONT'|'NO_UPFRONT',
            'RecurringCharges': [
                {
                    'RecurringChargeAmount': 123.0,
                    'RecurringChargeFrequency': 'string'
                },
            ]
        },
    ]
}

Response Structure

  • (dict) --

    Container for results from DescribeReservedElasticsearchInstances

    • NextToken (string) --

      Provides an identifier to allow retrieval of paginated results.

    • ReservedElasticsearchInstances (list) --

      List of reserved Elasticsearch instances.

      • (dict) --

        Details of a reserved Elasticsearch instance.

        • ReservationName (string) --

          The customer-specified identifier to track this reservation.

        • ReservedElasticsearchInstanceId (string) --

          The unique identifier for the reservation.

        • ReservedElasticsearchInstanceOfferingId (string) --

          The offering identifier.

        • ElasticsearchInstanceType (string) --

          The Elasticsearch instance type offered by the reserved instance offering.

        • StartTime (datetime) --

          The time the reservation started.

        • Duration (integer) --

          The duration, in seconds, for which the Elasticsearch instance is reserved.

        • FixedPrice (float) --

          The upfront fixed charge you will paid to purchase the specific reserved Elasticsearch instance offering.

        • UsagePrice (float) --

          The rate you are charged for each hour for the domain that is using this reserved instance.

        • CurrencyCode (string) --

          The currency code for the reserved Elasticsearch instance offering.

        • ElasticsearchInstanceCount (integer) --

          The number of Elasticsearch instances that have been reserved.

        • State (string) --

          The state of the reserved Elasticsearch instance.

        • PaymentOption (string) --

          The payment option as defined in the reserved Elasticsearch instance offering.

        • RecurringCharges (list) --

          The charge to your account regardless of whether you are creating any domains using the instance offering.

          • (dict) --

            Contains the specific price and frequency of a recurring charges for a reserved Elasticsearch instance, or for a reserved Elasticsearch instance offering.

            • RecurringChargeAmount (float) --

              The monetary amount of the recurring charge.

            • RecurringChargeFrequency (string) --

              The frequency of the recurring charge.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
describe_vpc_endpoints(**kwargs)

Describes one or more Amazon OpenSearch Service-managed VPC endpoints.

See also: AWS API Documentation

Request Syntax

response = client.describe_vpc_endpoints(
    VpcEndpointIds=[
        'string',
    ]
)
Parameters
VpcEndpointIds (list) --

[REQUIRED]

The unique identifiers of the endpoints to get information about.

  • (string) --
Return type
dict
Returns
Response Syntax
{
    'VpcEndpoints': [
        {
            'VpcEndpointId': 'string',
            'VpcEndpointOwner': 'string',
            'DomainArn': 'string',
            'VpcOptions': {
                'VPCId': 'string',
                'SubnetIds': [
                    'string',
                ],
                'AvailabilityZones': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ]
            },
            'Status': 'CREATING'|'CREATE_FAILED'|'ACTIVE'|'UPDATING'|'UPDATE_FAILED'|'DELETING'|'DELETE_FAILED',
            'Endpoint': 'string'
        },
    ],
    'VpcEndpointErrors': [
        {
            'VpcEndpointId': 'string',
            'ErrorCode': 'ENDPOINT_NOT_FOUND'|'SERVER_ERROR',
            'ErrorMessage': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    Container for response parameters to the DescribeVpcEndpoints operation. Returns a list containing configuration details and status of the VPC Endpoints as well as a list containing error responses of the endpoints that could not be described

    • VpcEndpoints (list) --

      Information about each requested VPC endpoint.

      • (dict) --

        The connection endpoint for connecting to an Amazon OpenSearch Service domain through a proxy.

        • VpcEndpointId (string) --

          The unique identifier of the endpoint.

        • VpcEndpointOwner (string) --

          The creator of the endpoint.

        • DomainArn (string) --

          The Amazon Resource Name (ARN) of the domain associated with the endpoint.

        • VpcOptions (dict) --

          Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC endpoint.

          • VPCId (string) --

            The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

          • SubnetIds (list) --

            Specifies the subnets for VPC endpoint.

            • (string) --
          • AvailabilityZones (list) --

            The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

            • (string) --
          • SecurityGroupIds (list) --

            Specifies the security groups for VPC endpoint.

            • (string) --
        • Status (string) --

          The current status of the endpoint.

        • Endpoint (string) --

          The connection endpoint ID for connecting to the domain.

    • VpcEndpointErrors (list) --

      Any errors associated with the request.

      • (dict) --

        Error information when attempting to describe an Amazon OpenSearch Service-managed VPC endpoint.

        • VpcEndpointId (string) --

          The unique identifier of the endpoint.

        • ErrorCode (string) --

          The code associated with the error.

        • ErrorMessage (string) --

          A message describing the error.

Exceptions

  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.BaseException
dissociate_package(**kwargs)

Dissociates a package from the Amazon ES domain.

See also: AWS API Documentation

Request Syntax

response = client.dissociate_package(
    PackageID='string',
    DomainName='string'
)
Parameters
  • PackageID (string) --

    [REQUIRED]

    Internal ID of the package that you want to associate with a domain. Use DescribePackages to find this value.

  • DomainName (string) --

    [REQUIRED]

    Name of the domain that you want to associate the package with.

Return type

dict

Returns

Response Syntax

{
    'DomainPackageDetails': {
        'PackageID': 'string',
        'PackageName': 'string',
        'PackageType': 'TXT-DICTIONARY',
        'LastUpdated': datetime(2015, 1, 1),
        'DomainName': 'string',
        'DomainPackageStatus': 'ASSOCIATING'|'ASSOCIATION_FAILED'|'ACTIVE'|'DISSOCIATING'|'DISSOCIATION_FAILED',
        'PackageVersion': 'string',
        'ReferencePath': 'string',
        'ErrorDetails': {
            'ErrorType': 'string',
            'ErrorMessage': 'string'
        }
    }
}

Response Structure

  • (dict) --

    Container for response returned by DissociatePackage operation.

    • DomainPackageDetails (dict) --

      DomainPackageDetails

      • PackageID (string) --

        Internal ID of the package.

      • PackageName (string) --

        User specified name of the package.

      • PackageType (string) --

        Currently supports only TXT-DICTIONARY.

      • LastUpdated (datetime) --

        Timestamp of the most-recent update to the association status.

      • DomainName (string) --

        Name of the domain you've associated a package with.

      • DomainPackageStatus (string) --

        State of the association. Values are ASSOCIATING/ASSOCIATION_FAILED/ACTIVE/DISSOCIATING/DISSOCIATION_FAILED.

      • PackageVersion (string) --

      • ReferencePath (string) --

        The relative path on Amazon ES nodes, which can be used as synonym_path when the package is synonym file.

      • ErrorDetails (dict) --

        Additional information if the package is in an error state. Null otherwise.

        • ErrorType (string) --
        • ErrorMessage (string) --

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.AccessDeniedException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.ConflictException
get_compatible_elasticsearch_versions(**kwargs)

Returns a list of upgrade compatible Elastisearch versions. You can optionally pass a DomainName to get all upgrade compatible Elasticsearch versions for that specific domain.

See also: AWS API Documentation

Request Syntax

response = client.get_compatible_elasticsearch_versions(
    DomainName='string'
)
Parameters
DomainName (string) -- The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).
Return type
dict
Returns
Response Syntax
{
    'CompatibleElasticsearchVersions': [
        {
            'SourceVersion': 'string',
            'TargetVersions': [
                'string',
            ]
        },
    ]
}

Response Structure

  • (dict) --

    Container for response returned by GetCompatibleElasticsearchVersions operation.

    • CompatibleElasticsearchVersions (list) --

      A map of compatible Elasticsearch versions returned as part of the GetCompatibleElasticsearchVersions operation.

      • (dict) --

        A map from an ElasticsearchVersion to a list of compatible ElasticsearchVersion s to which the domain can be upgraded.

        • SourceVersion (string) --

          The current version of Elasticsearch on which a domain is.

        • TargetVersions (list) --

          List of supported elastic search versions.

          • (string) --

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.InternalException
get_package_version_history(**kwargs)

Returns a list of versions of the package, along with their creation time and commit message.

See also: AWS API Documentation

Request Syntax

response = client.get_package_version_history(
    PackageID='string',
    MaxResults=123,
    NextToken='string'
)
Parameters
  • PackageID (string) --

    [REQUIRED]

    Returns an audit history of versions of the package.

  • MaxResults (integer) -- Limits results to a maximum number of versions.
  • NextToken (string) -- Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.
Return type

dict

Returns

Response Syntax

{
    'PackageID': 'string',
    'PackageVersionHistoryList': [
        {
            'PackageVersion': 'string',
            'CommitMessage': 'string',
            'CreatedAt': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Container for response returned by GetPackageVersionHistory operation.

    • PackageID (string) --

    • PackageVersionHistoryList (list) --

      List of PackageVersionHistory objects.

      • (dict) --

        Details of a package version.

        • PackageVersion (string) --

          Version of the package.

        • CommitMessage (string) --

          A message associated with the version.

        • CreatedAt (datetime) --

          Timestamp which tells creation time of the package version.

    • NextToken (string) --

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.AccessDeniedException
  • ElasticsearchService.Client.exceptions.ValidationException
get_paginator(operation_name)

Create a paginator for an operation.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Raises OperationNotPageableError
Raised if the operation is not pageable. You can use the client.can_paginate method to check if an operation is pageable.
Return type
L{botocore.paginate.Paginator}
Returns
A paginator object.
get_upgrade_history(**kwargs)

Retrieves the complete history of the last 10 upgrades that were performed on the domain.

See also: AWS API Documentation

Request Syntax

response = client.get_upgrade_history(
    DomainName='string',
    MaxResults=123,
    NextToken='string'
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

  • MaxResults (integer) -- Set this value to limit the number of results returned.
  • NextToken (string) -- Paginated APIs accepts NextToken input to returns next page results and provides a NextToken output in the response which can be used by the client to retrieve more results.
Return type

dict

Returns

Response Syntax

{
    'UpgradeHistories': [
        {
            'UpgradeName': 'string',
            'StartTimestamp': datetime(2015, 1, 1),
            'UpgradeStatus': 'IN_PROGRESS'|'SUCCEEDED'|'SUCCEEDED_WITH_ISSUES'|'FAILED',
            'StepsList': [
                {
                    'UpgradeStep': 'PRE_UPGRADE_CHECK'|'SNAPSHOT'|'UPGRADE',
                    'UpgradeStepStatus': 'IN_PROGRESS'|'SUCCEEDED'|'SUCCEEDED_WITH_ISSUES'|'FAILED',
                    'Issues': [
                        'string',
                    ],
                    'ProgressPercent': 123.0
                },
            ]
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Container for response returned by GetUpgradeHistory operation.

    • UpgradeHistories (list) --

      A list of UpgradeHistory objects corresponding to each Upgrade or Upgrade Eligibility Check performed on a domain returned as part of GetUpgradeHistoryResponse object.

      • (dict) --

        History of the last 10 Upgrades and Upgrade Eligibility Checks.

        • UpgradeName (string) --

          A string that describes the update briefly

        • StartTimestamp (datetime) --

          UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.

        • UpgradeStatus (string) --

          The overall status of the update. The status can take one of the following values:

          • In Progress
          • Succeeded
          • Succeeded with Issues
          • Failed
        • StepsList (list) --

          A list of UpgradeStepItem s representing information about each step performed as pard of a specific Upgrade or Upgrade Eligibility Check.

          • (dict) --

            Represents a single step of the Upgrade or Upgrade Eligibility Check workflow.

            • UpgradeStep (string) --

              Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through:

              • PreUpgradeCheck
              • Snapshot
              • Upgrade
            • UpgradeStepStatus (string) --

              The status of a particular step during an upgrade. The status can take one of the following values:

              • In Progress
              • Succeeded
              • Succeeded with Issues
              • Failed
            • Issues (list) --

              A list of strings containing detailed information about the errors encountered in a particular step.

              • (string) --
            • ProgressPercent (float) --

              The Floating point value representing progress percentage of a particular step.

    • NextToken (string) --

      Pagination token that needs to be supplied to the next call to get the next page of results

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.InternalException
get_upgrade_status(**kwargs)

Retrieves the latest status of the last upgrade or upgrade eligibility check that was performed on the domain.

See also: AWS API Documentation

Request Syntax

response = client.get_upgrade_status(
    DomainName='string'
)
Parameters
DomainName (string) --

[REQUIRED]

The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

Return type
dict
Returns
Response Syntax
{
    'UpgradeStep': 'PRE_UPGRADE_CHECK'|'SNAPSHOT'|'UPGRADE',
    'StepStatus': 'IN_PROGRESS'|'SUCCEEDED'|'SUCCEEDED_WITH_ISSUES'|'FAILED',
    'UpgradeName': 'string'
}

Response Structure

  • (dict) --

    Container for response returned by GetUpgradeStatus operation.

    • UpgradeStep (string) --

      Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through:

      • PreUpgradeCheck
      • Snapshot
      • Upgrade
    • StepStatus (string) --

      One of 4 statuses that a step can go through returned as part of the GetUpgradeStatusResponse object. The status can take one of the following values:

      • In Progress
      • Succeeded
      • Succeeded with Issues
      • Failed
    • UpgradeName (string) --

      A string that describes the update briefly

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.InternalException
get_waiter(waiter_name)

Returns an object that can wait for some condition.

Parameters
waiter_name (str) -- The name of the waiter to get. See the waiters section of the service docs for a list of available waiters.
Returns
The specified waiter object.
Return type
botocore.waiter.Waiter
list_domain_names(**kwargs)

Returns the name of all Elasticsearch domains owned by the current user's account.

See also: AWS API Documentation

Request Syntax

response = client.list_domain_names(
    EngineType='OpenSearch'|'Elasticsearch'
)
Parameters
EngineType (string) -- Optional parameter to filter the output by domain engine type. Acceptable values are 'Elasticsearch' and 'OpenSearch'.
Return type
dict
Returns
Response Syntax
{
    'DomainNames': [
        {
            'DomainName': 'string',
            'EngineType': 'OpenSearch'|'Elasticsearch'
        },
    ]
}

Response Structure

  • (dict) --

    The result of a ListDomainNames operation. Contains the names of all domains owned by this account and their respective engine types.

    • DomainNames (list) --

      List of domain names and respective engine types.

      • (dict) --
        • DomainName (string) --

          Specifies the DomainName .

        • EngineType (string) --

          Specifies the EngineType of the domain.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.ValidationException
list_domains_for_package(**kwargs)

Lists all Amazon ES domains associated with the package.

See also: AWS API Documentation

Request Syntax

response = client.list_domains_for_package(
    PackageID='string',
    MaxResults=123,
    NextToken='string'
)
Parameters
  • PackageID (string) --

    [REQUIRED]

    The package for which to list domains.

  • MaxResults (integer) -- Limits results to a maximum number of domains.
  • NextToken (string) -- Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.
Return type

dict

Returns

Response Syntax

{
    'DomainPackageDetailsList': [
        {
            'PackageID': 'string',
            'PackageName': 'string',
            'PackageType': 'TXT-DICTIONARY',
            'LastUpdated': datetime(2015, 1, 1),
            'DomainName': 'string',
            'DomainPackageStatus': 'ASSOCIATING'|'ASSOCIATION_FAILED'|'ACTIVE'|'DISSOCIATING'|'DISSOCIATION_FAILED',
            'PackageVersion': 'string',
            'ReferencePath': 'string',
            'ErrorDetails': {
                'ErrorType': 'string',
                'ErrorMessage': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Container for response parameters to ListDomainsForPackage operation.

    • DomainPackageDetailsList (list) --

      List of DomainPackageDetails objects.

      • (dict) --

        Information on a package that is associated with a domain.

        • PackageID (string) --

          Internal ID of the package.

        • PackageName (string) --

          User specified name of the package.

        • PackageType (string) --

          Currently supports only TXT-DICTIONARY.

        • LastUpdated (datetime) --

          Timestamp of the most-recent update to the association status.

        • DomainName (string) --

          Name of the domain you've associated a package with.

        • DomainPackageStatus (string) --

          State of the association. Values are ASSOCIATING/ASSOCIATION_FAILED/ACTIVE/DISSOCIATING/DISSOCIATION_FAILED.

        • PackageVersion (string) --

        • ReferencePath (string) --

          The relative path on Amazon ES nodes, which can be used as synonym_path when the package is synonym file.

        • ErrorDetails (dict) --

          Additional information if the package is in an error state. Null otherwise.

          • ErrorType (string) --
          • ErrorMessage (string) --
    • NextToken (string) --

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.AccessDeniedException
  • ElasticsearchService.Client.exceptions.ValidationException
list_elasticsearch_instance_types(**kwargs)

List all Elasticsearch instance types that are supported for given ElasticsearchVersion

See also: AWS API Documentation

Request Syntax

response = client.list_elasticsearch_instance_types(
    ElasticsearchVersion='string',
    DomainName='string',
    MaxResults=123,
    NextToken='string'
)
Parameters
  • ElasticsearchVersion (string) --

    [REQUIRED]

    Version of Elasticsearch for which list of supported elasticsearch instance types are needed.

  • DomainName (string) -- DomainName represents the name of the Domain that we are trying to modify. This should be present only if we are querying for list of available Elasticsearch instance types when modifying existing domain.
  • MaxResults (integer) -- Set this value to limit the number of results returned. Value provided must be greater than 30 else it wont be honored.
  • NextToken (string) -- NextToken should be sent in case if earlier API call produced result containing NextToken. It is used for pagination.
Return type

dict

Returns

Response Syntax

{
    'ElasticsearchInstanceTypes': [
        'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Container for the parameters returned by ListElasticsearchInstanceTypes operation.

    • ElasticsearchInstanceTypes (list) --

      List of instance types supported by Amazon Elasticsearch service for given ElasticsearchVersion

      • (string) --
    • NextToken (string) --

      In case if there are more results available NextToken would be present, make further request to the same API with received NextToken to paginate remaining results.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
list_elasticsearch_versions(**kwargs)

List all supported Elasticsearch versions

See also: AWS API Documentation

Request Syntax

response = client.list_elasticsearch_versions(
    MaxResults=123,
    NextToken='string'
)
Parameters
  • MaxResults (integer) -- Set this value to limit the number of results returned. Value provided must be greater than 10 else it wont be honored.
  • NextToken (string) -- Paginated APIs accepts NextToken input to returns next page results and provides a NextToken output in the response which can be used by the client to retrieve more results.
Return type

dict

Returns

Response Syntax

{
    'ElasticsearchVersions': [
        'string',
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Container for the parameters for response received from ListElasticsearchVersions operation.

    • ElasticsearchVersions (list) --

      List of supported elastic search versions.

      • (string) --
    • NextToken (string) --

      Paginated APIs accepts NextToken input to returns next page results and provides a NextToken output in the response which can be used by the client to retrieve more results.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
list_packages_for_domain(**kwargs)

Lists all packages associated with the Amazon ES domain.

See also: AWS API Documentation

Request Syntax

response = client.list_packages_for_domain(
    DomainName='string',
    MaxResults=123,
    NextToken='string'
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    The name of the domain for which you want to list associated packages.

  • MaxResults (integer) -- Limits results to a maximum number of packages.
  • NextToken (string) -- Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.
Return type

dict

Returns

Response Syntax

{
    'DomainPackageDetailsList': [
        {
            'PackageID': 'string',
            'PackageName': 'string',
            'PackageType': 'TXT-DICTIONARY',
            'LastUpdated': datetime(2015, 1, 1),
            'DomainName': 'string',
            'DomainPackageStatus': 'ASSOCIATING'|'ASSOCIATION_FAILED'|'ACTIVE'|'DISSOCIATING'|'DISSOCIATION_FAILED',
            'PackageVersion': 'string',
            'ReferencePath': 'string',
            'ErrorDetails': {
                'ErrorType': 'string',
                'ErrorMessage': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Container for response parameters to ListPackagesForDomain operation.

    • DomainPackageDetailsList (list) --

      List of DomainPackageDetails objects.

      • (dict) --

        Information on a package that is associated with a domain.

        • PackageID (string) --

          Internal ID of the package.

        • PackageName (string) --

          User specified name of the package.

        • PackageType (string) --

          Currently supports only TXT-DICTIONARY.

        • LastUpdated (datetime) --

          Timestamp of the most-recent update to the association status.

        • DomainName (string) --

          Name of the domain you've associated a package with.

        • DomainPackageStatus (string) --

          State of the association. Values are ASSOCIATING/ASSOCIATION_FAILED/ACTIVE/DISSOCIATING/DISSOCIATION_FAILED.

        • PackageVersion (string) --

        • ReferencePath (string) --

          The relative path on Amazon ES nodes, which can be used as synonym_path when the package is synonym file.

        • ErrorDetails (dict) --

          Additional information if the package is in an error state. Null otherwise.

          • ErrorType (string) --
          • ErrorMessage (string) --
    • NextToken (string) --

      Pagination token that needs to be supplied to the next call to get the next page of results.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.AccessDeniedException
  • ElasticsearchService.Client.exceptions.ValidationException
list_tags(**kwargs)

Returns all tags for the given Elasticsearch domain.

See also: AWS API Documentation

Request Syntax

response = client.list_tags(
    ARN='string'
)
Parameters
ARN (string) --

[REQUIRED]

Specify the ARN for the Elasticsearch domain to which the tags are attached that you want to view.

Return type
dict
Returns
Response Syntax
{
    'TagList': [
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    The result of a ListTags operation. Contains tags for all requested Elasticsearch domains.

    • TagList (list) --

      List of Tag for the requested Elasticsearch domain.

      • (dict) --

        Specifies a key value pair for a resource tag.

        • Key (string) --

          Specifies the TagKey , the name of the tag. Tag keys must be unique for the Elasticsearch domain to which they are attached.

        • Value (string) --

          Specifies the TagValue , the value assigned to the corresponding tag key. Tag values can be null and do not have to be unique in a tag set. For example, you can have a key value pair in a tag set of project : Trinity and cost-center : Trinity

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.InternalException
list_vpc_endpoint_access(**kwargs)

Retrieves information about each principal that is allowed to access a given Amazon OpenSearch Service domain through the use of an interface VPC endpoint.

See also: AWS API Documentation

Request Syntax

response = client.list_vpc_endpoint_access(
    DomainName='string',
    NextToken='string'
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    The name of the OpenSearch Service domain to retrieve access information for.

  • NextToken (string) -- Provides an identifier to allow retrieval of paginated results.
Return type

dict

Returns

Response Syntax

{
    'AuthorizedPrincipalList': [
        {
            'PrincipalType': 'AWS_ACCOUNT'|'AWS_SERVICE',
            'Principal': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Container for response parameters to the ListVpcEndpointAccess operation. Returns a list of accounts id and account type authorized to manage VPC endpoints.

    • AuthorizedPrincipalList (list) --

      List of AuthorizedPrincipal describing the details of the permissions to manage VPC endpoints against the specified domain.

      • (dict) --

        Information about an account or service that has access to an Amazon OpenSearch Service domain through the use of an interface VPC endpoint.

        • PrincipalType (string) --

          The type of principal.

        • Principal (string) --

          The IAM principal that is allowed access to the domain.

    • NextToken (string) --

      Provides an identifier to allow retrieval of paginated results.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.BaseException
list_vpc_endpoints(**kwargs)

Retrieves all Amazon OpenSearch Service-managed VPC endpoints in the current account and Region.

See also: AWS API Documentation

Request Syntax

response = client.list_vpc_endpoints(
    NextToken='string'
)
Parameters
NextToken (string) -- Identifier to allow retrieval of paginated results.
Return type
dict
Returns
Response Syntax
{
    'VpcEndpointSummaryList': [
        {
            'VpcEndpointId': 'string',
            'VpcEndpointOwner': 'string',
            'DomainArn': 'string',
            'Status': 'CREATING'|'CREATE_FAILED'|'ACTIVE'|'UPDATING'|'UPDATE_FAILED'|'DELETING'|'DELETE_FAILED'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Container for response parameters to the ListVpcEndpoints operation. Returns a list containing summarized details of the VPC endpoints.

    • VpcEndpointSummaryList (list) --

      Information about each endpoint.

      • (dict) --

        Summary information for an Amazon OpenSearch Service-managed VPC endpoint.

        • VpcEndpointId (string) --

          The unique identifier of the endpoint.

        • VpcEndpointOwner (string) --

          The creator of the endpoint.

        • DomainArn (string) --

          The Amazon Resource Name (ARN) of the domain associated with the endpoint.

        • Status (string) --

          The current status of the endpoint.

    • NextToken (string) --

      Provides an identifier to allow retrieval of paginated results.

Exceptions

  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.BaseException
list_vpc_endpoints_for_domain(**kwargs)

Retrieves all Amazon OpenSearch Service-managed VPC endpoints associated with a particular domain.

See also: AWS API Documentation

Request Syntax

response = client.list_vpc_endpoints_for_domain(
    DomainName='string',
    NextToken='string'
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    Name of the ElasticSearch domain whose VPC endpoints are to be listed.

  • NextToken (string) -- Provides an identifier to allow retrieval of paginated results.
Return type

dict

Returns

Response Syntax

{
    'VpcEndpointSummaryList': [
        {
            'VpcEndpointId': 'string',
            'VpcEndpointOwner': 'string',
            'DomainArn': 'string',
            'Status': 'CREATING'|'CREATE_FAILED'|'ACTIVE'|'UPDATING'|'UPDATE_FAILED'|'DELETING'|'DELETE_FAILED'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Container for response parameters to the ListVpcEndpointsForDomain operation. Returns a list containing summarized details of the VPC endpoints.

    • VpcEndpointSummaryList (list) --

      Provides list of VpcEndpointSummary summarizing details of the VPC endpoints.

      • (dict) --

        Summary information for an Amazon OpenSearch Service-managed VPC endpoint.

        • VpcEndpointId (string) --

          The unique identifier of the endpoint.

        • VpcEndpointOwner (string) --

          The creator of the endpoint.

        • DomainArn (string) --

          The Amazon Resource Name (ARN) of the domain associated with the endpoint.

        • Status (string) --

          The current status of the endpoint.

    • NextToken (string) --

      Information about each endpoint associated with the domain.

Exceptions

  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.BaseException
purchase_reserved_elasticsearch_instance_offering(**kwargs)

Allows you to purchase reserved Elasticsearch instances.

See also: AWS API Documentation

Request Syntax

response = client.purchase_reserved_elasticsearch_instance_offering(
    ReservedElasticsearchInstanceOfferingId='string',
    ReservationName='string',
    InstanceCount=123
)
Parameters
  • ReservedElasticsearchInstanceOfferingId (string) --

    [REQUIRED]

    The ID of the reserved Elasticsearch instance offering to purchase.

  • ReservationName (string) --

    [REQUIRED]

    A customer-specified identifier to track this reservation.

  • InstanceCount (integer) -- The number of Elasticsearch instances to reserve.
Return type

dict

Returns

Response Syntax

{
    'ReservedElasticsearchInstanceId': 'string',
    'ReservationName': 'string'
}

Response Structure

  • (dict) --

    Represents the output of a PurchaseReservedElasticsearchInstanceOffering operation.

    • ReservedElasticsearchInstanceId (string) --

      Details of the reserved Elasticsearch instance which was purchased.

    • ReservationName (string) --

      The customer-specified identifier used to track this reservation.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ResourceAlreadyExistsException
  • ElasticsearchService.Client.exceptions.LimitExceededException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.InternalException
reject_inbound_cross_cluster_search_connection(**kwargs)

Allows the destination domain owner to reject an inbound cross-cluster search connection request.

See also: AWS API Documentation

Request Syntax

response = client.reject_inbound_cross_cluster_search_connection(
    CrossClusterSearchConnectionId='string'
)
Parameters
CrossClusterSearchConnectionId (string) --

[REQUIRED]

The id of the inbound connection that you want to reject.

Return type
dict
Returns
Response Syntax
{
    'CrossClusterSearchConnection': {
        'SourceDomainInfo': {
            'OwnerId': 'string',
            'DomainName': 'string',
            'Region': 'string'
        },
        'DestinationDomainInfo': {
            'OwnerId': 'string',
            'DomainName': 'string',
            'Region': 'string'
        },
        'CrossClusterSearchConnectionId': 'string',
        'ConnectionStatus': {
            'StatusCode': 'PENDING_ACCEPTANCE'|'APPROVED'|'REJECTING'|'REJECTED'|'DELETING'|'DELETED',
            'Message': 'string'
        }
    }
}

Response Structure

  • (dict) --

    The result of a RejectInboundCrossClusterSearchConnection operation. Contains details of rejected inbound connection.

    • CrossClusterSearchConnection (dict) --

      Specifies the InboundCrossClusterSearchConnection of rejected inbound connection.

      • SourceDomainInfo (dict) --

        Specifies the DomainInformation for the source Elasticsearch domain.

        • OwnerId (string) --
        • DomainName (string) --

          The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

        • Region (string) --
      • DestinationDomainInfo (dict) --

        Specifies the DomainInformation for the destination Elasticsearch domain.

        • OwnerId (string) --
        • DomainName (string) --

          The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

        • Region (string) --
      • CrossClusterSearchConnectionId (string) --

        Specifies the connection id for the inbound cross-cluster search connection.

      • ConnectionStatus (dict) --

        Specifies the InboundCrossClusterSearchConnectionStatus for the outbound connection.

        • StatusCode (string) --

          The state code for inbound connection. This can be one of the following:

          • PENDING_ACCEPTANCE: Inbound connection is not yet accepted by destination domain owner.
          • APPROVED: Inbound connection is pending acceptance by destination domain owner.
          • REJECTING: Inbound connection rejection is in process.
          • REJECTED: Inbound connection is rejected.
          • DELETING: Inbound connection deletion is in progress.
          • DELETED: Inbound connection is deleted and cannot be used further.
        • Message (string) --

          Specifies verbose information for the inbound connection status.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
remove_tags(**kwargs)

Removes the specified set of tags from the specified Elasticsearch domain.

See also: AWS API Documentation

Request Syntax

response = client.remove_tags(
    ARN='string',
    TagKeys=[
        'string',
    ]
)
Parameters
  • ARN (string) --

    [REQUIRED]

    Specifies the ARN for the Elasticsearch domain from which you want to delete the specified tags.

  • TagKeys (list) --

    [REQUIRED]

    Specifies the TagKey list which you want to remove from the Elasticsearch domain.

    • (string) --
Returns

None

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.InternalException
revoke_vpc_endpoint_access(**kwargs)

Revokes access to an Amazon OpenSearch Service domain that was provided through an interface VPC endpoint.

See also: AWS API Documentation

Request Syntax

response = client.revoke_vpc_endpoint_access(
    DomainName='string',
    Account='string'
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    The name of the OpenSearch Service domain.

  • Account (string) --

    [REQUIRED]

    The account ID to revoke access from.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

    Container for response parameters to the RevokeVpcEndpointAccess operation. The response body for this operation is empty.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.BaseException
start_elasticsearch_service_software_update(**kwargs)

Schedules a service software update for an Amazon ES domain.

See also: AWS API Documentation

Request Syntax

response = client.start_elasticsearch_service_software_update(
    DomainName='string'
)
Parameters
DomainName (string) --

[REQUIRED]

The name of the domain that you want to update to the latest service software.

Return type
dict
Returns
Response Syntax
{
    'ServiceSoftwareOptions': {
        'CurrentVersion': 'string',
        'NewVersion': 'string',
        'UpdateAvailable': True|False,
        'Cancellable': True|False,
        'UpdateStatus': 'PENDING_UPDATE'|'IN_PROGRESS'|'COMPLETED'|'NOT_ELIGIBLE'|'ELIGIBLE',
        'Description': 'string',
        'AutomatedUpdateDate': datetime(2015, 1, 1),
        'OptionalDeployment': True|False
    }
}

Response Structure

  • (dict) --

    The result of a StartElasticsearchServiceSoftwareUpdate operation. Contains the status of the update.

    • ServiceSoftwareOptions (dict) --

      The current status of the Elasticsearch service software update.

      • CurrentVersion (string) --

        The current service software version that is present on the domain.

      • NewVersion (string) --

        The new service software version if one is available.

      • UpdateAvailable (boolean) --

        True if you are able to update you service software version. False if you are not able to update your service software version.

      • Cancellable (boolean) --

        True if you are able to cancel your service software version update. False if you are not able to cancel your service software version.

      • UpdateStatus (string) --

        The status of your service software update. This field can take the following values: ELIGIBLE , PENDING_UPDATE , IN_PROGRESS , COMPLETED , and NOT_ELIGIBLE .

      • Description (string) --

        The description of the UpdateStatus .

      • AutomatedUpdateDate (datetime) --

        Timestamp, in Epoch time, until which you can manually request a service software update. After this date, we automatically update your service software.

      • OptionalDeployment (boolean) --

        True if a service software is never automatically updated. False if a service software is automatically updated after AutomatedUpdateDate .

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
update_elasticsearch_domain_config(**kwargs)

Modifies the cluster configuration of the specified Elasticsearch domain, setting as setting the instance type and the number of instances.

See also: AWS API Documentation

Request Syntax

response = client.update_elasticsearch_domain_config(
    DomainName='string',
    ElasticsearchClusterConfig={
        'InstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
        'InstanceCount': 123,
        'DedicatedMasterEnabled': True|False,
        'ZoneAwarenessEnabled': True|False,
        'ZoneAwarenessConfig': {
            'AvailabilityZoneCount': 123
        },
        'DedicatedMasterType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
        'DedicatedMasterCount': 123,
        'WarmEnabled': True|False,
        'WarmType': 'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch',
        'WarmCount': 123,
        'ColdStorageOptions': {
            'Enabled': True|False
        }
    },
    EBSOptions={
        'EBSEnabled': True|False,
        'VolumeType': 'standard'|'gp2'|'io1'|'gp3',
        'VolumeSize': 123,
        'Iops': 123,
        'Throughput': 123
    },
    SnapshotOptions={
        'AutomatedSnapshotStartHour': 123
    },
    VPCOptions={
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ]
    },
    CognitoOptions={
        'Enabled': True|False,
        'UserPoolId': 'string',
        'IdentityPoolId': 'string',
        'RoleArn': 'string'
    },
    AdvancedOptions={
        'string': 'string'
    },
    AccessPolicies='string',
    LogPublishingOptions={
        'string': {
            'CloudWatchLogsLogGroupArn': 'string',
            'Enabled': True|False
        }
    },
    DomainEndpointOptions={
        'EnforceHTTPS': True|False,
        'TLSSecurityPolicy': 'Policy-Min-TLS-1-0-2019-07'|'Policy-Min-TLS-1-2-2019-07',
        'CustomEndpointEnabled': True|False,
        'CustomEndpoint': 'string',
        'CustomEndpointCertificateArn': 'string'
    },
    AdvancedSecurityOptions={
        'Enabled': True|False,
        'InternalUserDatabaseEnabled': True|False,
        'MasterUserOptions': {
            'MasterUserARN': 'string',
            'MasterUserName': 'string',
            'MasterUserPassword': 'string'
        },
        'SAMLOptions': {
            'Enabled': True|False,
            'Idp': {
                'MetadataContent': 'string',
                'EntityId': 'string'
            },
            'MasterUserName': 'string',
            'MasterBackendRole': 'string',
            'SubjectKey': 'string',
            'RolesKey': 'string',
            'SessionTimeoutMinutes': 123
        },
        'AnonymousAuthEnabled': True|False
    },
    NodeToNodeEncryptionOptions={
        'Enabled': True|False
    },
    EncryptionAtRestOptions={
        'Enabled': True|False,
        'KmsKeyId': 'string'
    },
    AutoTuneOptions={
        'DesiredState': 'ENABLED'|'DISABLED',
        'RollbackOnDisable': 'NO_ROLLBACK'|'DEFAULT_ROLLBACK',
        'MaintenanceSchedules': [
            {
                'StartAt': datetime(2015, 1, 1),
                'Duration': {
                    'Value': 123,
                    'Unit': 'HOURS'
                },
                'CronExpressionForRecurrence': 'string'
            },
        ]
    },
    DryRun=True|False
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    The name of the Elasticsearch domain that you are updating.

  • ElasticsearchClusterConfig (dict) --

    The type and number of instances to instantiate for the domain cluster.

    • InstanceType (string) --

      The instance type for an Elasticsearch cluster. UltraWarm instance types are not supported for data instances.

    • InstanceCount (integer) --

      The number of instances in the specified domain cluster.

    • DedicatedMasterEnabled (boolean) --

      A boolean value to indicate whether a dedicated master node is enabled. See About Dedicated Master Nodes for more information.

    • ZoneAwarenessEnabled (boolean) --

      A boolean value to indicate whether zone awareness is enabled. See About Zone Awareness for more information.

    • ZoneAwarenessConfig (dict) --

      Specifies the zone awareness configuration for a domain when zone awareness is enabled.

      • AvailabilityZoneCount (integer) --

        An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled

    • DedicatedMasterType (string) --

      The instance type for a dedicated master node.

    • DedicatedMasterCount (integer) --

      Total number of dedicated master nodes, active and on standby, for the cluster.

    • WarmEnabled (boolean) --

      True to enable warm storage.

    • WarmType (string) --

      The instance type for the Elasticsearch cluster's warm nodes.

    • WarmCount (integer) --

      The number of warm nodes in the cluster.

    • ColdStorageOptions (dict) --

      Specifies the ColdStorageOptions config for Elasticsearch Domain

      • Enabled (boolean) -- [REQUIRED]

        Enable cold storage option. Accepted values true or false

  • EBSOptions (dict) --

    Specify the type and size of the EBS volume that you want to use.

    • EBSEnabled (boolean) --

      Specifies whether EBS-based storage is enabled.

    • VolumeType (string) --

      Specifies the volume type for EBS-based storage.

    • VolumeSize (integer) --

      Integer to specify the size of an EBS volume.

    • Iops (integer) --

      Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).

    • Throughput (integer) --

      Specifies the Throughput for GP3 EBS volume (SSD).

  • SnapshotOptions (dict) --

    Option to set the time, in UTC format, for the daily automated snapshot. Default value is 0 hours.

    • AutomatedSnapshotStartHour (integer) --

      Specifies the time, in UTC format, when the service takes a daily automated snapshot of the specified Elasticsearch domain. Default value is 0 hours.

  • VPCOptions (dict) --

    Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains

    • SubnetIds (list) --

      Specifies the subnets for VPC endpoint.

      • (string) --
    • SecurityGroupIds (list) --

      Specifies the security groups for VPC endpoint.

      • (string) --
  • CognitoOptions (dict) --

    Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana.

    • Enabled (boolean) --

      Specifies the option to enable Cognito for Kibana authentication.

    • UserPoolId (string) --

      Specifies the Cognito user pool ID for Kibana authentication.

    • IdentityPoolId (string) --

      Specifies the Cognito identity pool ID for Kibana authentication.

    • RoleArn (string) --

      Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.

  • AdvancedOptions (dict) --

    Modifies the advanced option to allow references to indices in an HTTP request body. Must be false when configuring access to individual sub-resources. By default, the value is true . See Configuration Advanced Options for more information.

    • (string) --
      • (string) --
  • AccessPolicies (string) -- IAM access policy as a JSON-formatted string.
  • LogPublishingOptions (dict) --

    Map of LogType and LogPublishingOption , each containing options to publish a given type of Elasticsearch log.

    • (string) --

      Type of Log File, it can be one of the following:

      • INDEX_SLOW_LOGS: Index slow logs contain insert requests that took more time than configured index query log threshold to execute.
      • SEARCH_SLOW_LOGS: Search slow logs contain search queries that took more time than configured search query log threshold to execute.
      • ES_APPLICATION_LOGS: Elasticsearch application logs contain information about errors and warnings raised during the operation of the service and can be useful for troubleshooting.
      • AUDIT_LOGS: Audit logs contain records of user requests for access from the domain.
      • (dict) --

        Log Publishing option that is set for given domain. Attributes and their details:

        • CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which log needs to be published.
        • Enabled: Whether the log publishing for given log type is enabled or not
        • CloudWatchLogsLogGroupArn (string) --

          ARN of the Cloudwatch log group to which log needs to be published.

        • Enabled (boolean) --

          Specifies whether given log publishing option is enabled or not.

  • DomainEndpointOptions (dict) --

    Options to specify configuration that will be applied to the domain endpoint.

    • EnforceHTTPS (boolean) --

      Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.

    • TLSSecurityPolicy (string) --

      Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain. It can be one of the following values:

      • Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLSv1.0 and higher.
      • Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2
    • CustomEndpointEnabled (boolean) --

      Specify if custom endpoint should be enabled for the Elasticsearch domain.

    • CustomEndpoint (string) --

      Specify the fully qualified domain for your custom endpoint.

    • CustomEndpointCertificateArn (string) --

      Specify ACM certificate ARN for your custom endpoint.

  • AdvancedSecurityOptions (dict) --

    Specifies advanced security options.

    • Enabled (boolean) --

      True if advanced security is enabled.

    • InternalUserDatabaseEnabled (boolean) --

      True if the internal user database is enabled.

    • MasterUserOptions (dict) --

      Credentials for the master user: username and password, ARN, or both.

      • MasterUserARN (string) --

        ARN for the master user (if IAM is enabled).

      • MasterUserName (string) --

        The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database.

      • MasterUserPassword (string) --

        The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database.

    • SAMLOptions (dict) --

      Specifies the SAML application configuration for the domain.

      • Enabled (boolean) --

        True if SAML is enabled.

      • Idp (dict) --

        Specifies the SAML Identity Provider's information.

        • MetadataContent (string) -- [REQUIRED]

          The Metadata of the SAML application in xml format.

        • EntityId (string) -- [REQUIRED]

          The unique Entity ID of the application in SAML Identity Provider.

      • MasterUserName (string) --

        The SAML master username, which is stored in the Amazon Elasticsearch Service domain's internal database.

      • MasterBackendRole (string) --

        The backend role to which the SAML master user is mapped to.

      • SubjectKey (string) --

        The key to use for matching the SAML Subject attribute.

      • RolesKey (string) --

        The key to use for matching the SAML Roles attribute.

      • SessionTimeoutMinutes (integer) --

        The duration, in minutes, after which a user session becomes inactive. Acceptable values are between 1 and 1440, and the default value is 60.

    • AnonymousAuthEnabled (boolean) --

      True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.

  • NodeToNodeEncryptionOptions (dict) --

    Specifies the NodeToNodeEncryptionOptions.

    • Enabled (boolean) --

      Specify true to enable node-to-node encryption.

  • EncryptionAtRestOptions (dict) --

    Specifies the Encryption At Rest Options.

    • Enabled (boolean) --

      Specifies the option to enable Encryption At Rest.

    • KmsKeyId (string) --

      Specifies the KMS Key ID for Encryption At Rest options.

  • AutoTuneOptions (dict) --

    Specifies Auto-Tune options.

    • DesiredState (string) --

      Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED.

    • RollbackOnDisable (string) --

      Specifies the rollback state while disabling Auto-Tune for the domain. Valid values are NO_ROLLBACK, DEFAULT_ROLLBACK.

    • MaintenanceSchedules (list) --

      Specifies list of maitenance schedules. See the Developer Guide for more information.

      • (dict) --

        Specifies Auto-Tune maitenance schedule. See the Developer Guide for more information.

        • StartAt (datetime) --

          Specifies timestamp at which Auto-Tune maintenance schedule start.

        • Duration (dict) --

          Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information.

          • Value (integer) --

            Integer to specify the value of a maintenance schedule duration. See the Developer Guide for more information.

          • Unit (string) --

            Specifies the unit of a maintenance schedule duration. Valid value is HOURS. See the Developer Guide for more information.

        • CronExpressionForRecurrence (string) --

          Specifies cron expression for a recurring maintenance schedule. See the Developer Guide for more information.

  • DryRun (boolean) -- This flag, when set to True, specifies whether the UpdateElasticsearchDomain request should return the results of validation checks without actually applying the change. This flag, when set to True, specifies the deployment mechanism through which the update shall be applied on the domain. This will not actually perform the Update.
Return type

dict

Returns

Response Syntax

{
    'DomainConfig': {
        'ElasticsearchVersion': {
            'Options': 'string',
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'ElasticsearchClusterConfig': {
            'Options': {
                'InstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
                'InstanceCount': 123,
                'DedicatedMasterEnabled': True|False,
                'ZoneAwarenessEnabled': True|False,
                'ZoneAwarenessConfig': {
                    'AvailabilityZoneCount': 123
                },
                'DedicatedMasterType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
                'DedicatedMasterCount': 123,
                'WarmEnabled': True|False,
                'WarmType': 'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch',
                'WarmCount': 123,
                'ColdStorageOptions': {
                    'Enabled': True|False
                }
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'EBSOptions': {
            'Options': {
                'EBSEnabled': True|False,
                'VolumeType': 'standard'|'gp2'|'io1'|'gp3',
                'VolumeSize': 123,
                'Iops': 123,
                'Throughput': 123
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'AccessPolicies': {
            'Options': 'string',
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'SnapshotOptions': {
            'Options': {
                'AutomatedSnapshotStartHour': 123
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'VPCOptions': {
            'Options': {
                'VPCId': 'string',
                'SubnetIds': [
                    'string',
                ],
                'AvailabilityZones': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ]
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'CognitoOptions': {
            'Options': {
                'Enabled': True|False,
                'UserPoolId': 'string',
                'IdentityPoolId': 'string',
                'RoleArn': 'string'
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'EncryptionAtRestOptions': {
            'Options': {
                'Enabled': True|False,
                'KmsKeyId': 'string'
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'NodeToNodeEncryptionOptions': {
            'Options': {
                'Enabled': True|False
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'AdvancedOptions': {
            'Options': {
                'string': 'string'
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'LogPublishingOptions': {
            'Options': {
                'string': {
                    'CloudWatchLogsLogGroupArn': 'string',
                    'Enabled': True|False
                }
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'DomainEndpointOptions': {
            'Options': {
                'EnforceHTTPS': True|False,
                'TLSSecurityPolicy': 'Policy-Min-TLS-1-0-2019-07'|'Policy-Min-TLS-1-2-2019-07',
                'CustomEndpointEnabled': True|False,
                'CustomEndpoint': 'string',
                'CustomEndpointCertificateArn': 'string'
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'AdvancedSecurityOptions': {
            'Options': {
                'Enabled': True|False,
                'InternalUserDatabaseEnabled': True|False,
                'SAMLOptions': {
                    'Enabled': True|False,
                    'Idp': {
                        'MetadataContent': 'string',
                        'EntityId': 'string'
                    },
                    'SubjectKey': 'string',
                    'RolesKey': 'string',
                    'SessionTimeoutMinutes': 123
                },
                'AnonymousAuthDisableDate': datetime(2015, 1, 1),
                'AnonymousAuthEnabled': True|False
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'RequiresIndexDocuments'|'Processing'|'Active',
                'PendingDeletion': True|False
            }
        },
        'AutoTuneOptions': {
            'Options': {
                'DesiredState': 'ENABLED'|'DISABLED',
                'RollbackOnDisable': 'NO_ROLLBACK'|'DEFAULT_ROLLBACK',
                'MaintenanceSchedules': [
                    {
                        'StartAt': datetime(2015, 1, 1),
                        'Duration': {
                            'Value': 123,
                            'Unit': 'HOURS'
                        },
                        'CronExpressionForRecurrence': 'string'
                    },
                ]
            },
            'Status': {
                'CreationDate': datetime(2015, 1, 1),
                'UpdateDate': datetime(2015, 1, 1),
                'UpdateVersion': 123,
                'State': 'ENABLED'|'DISABLED'|'ENABLE_IN_PROGRESS'|'DISABLE_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_SCHEDULED'|'DISABLED_AND_ROLLBACK_IN_PROGRESS'|'DISABLED_AND_ROLLBACK_COMPLETE'|'DISABLED_AND_ROLLBACK_ERROR'|'ERROR',
                'ErrorMessage': 'string',
                'PendingDeletion': True|False
            }
        },
        'ChangeProgressDetails': {
            'ChangeId': 'string',
            'Message': 'string'
        }
    },
    'DryRunResults': {
        'DeploymentType': 'string',
        'Message': 'string'
    }
}

Response Structure

  • (dict) --

    The result of an UpdateElasticsearchDomain request. Contains the status of the Elasticsearch domain being updated.

    • DomainConfig (dict) --

      The status of the updated Elasticsearch domain.

      • ElasticsearchVersion (dict) --

        String of format X.Y to specify version for the Elasticsearch domain.

        • Options (string) --

          Specifies the Elasticsearch version for the specified Elasticsearch domain.

        • Status (dict) --

          Specifies the status of the Elasticsearch version options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • ElasticsearchClusterConfig (dict) --

        Specifies the ElasticsearchClusterConfig for the Elasticsearch domain.

        • Options (dict) --

          Specifies the cluster configuration for the specified Elasticsearch domain.

          • InstanceType (string) --

            The instance type for an Elasticsearch cluster. UltraWarm instance types are not supported for data instances.

          • InstanceCount (integer) --

            The number of instances in the specified domain cluster.

          • DedicatedMasterEnabled (boolean) --

            A boolean value to indicate whether a dedicated master node is enabled. See About Dedicated Master Nodes for more information.

          • ZoneAwarenessEnabled (boolean) --

            A boolean value to indicate whether zone awareness is enabled. See About Zone Awareness for more information.

          • ZoneAwarenessConfig (dict) --

            Specifies the zone awareness configuration for a domain when zone awareness is enabled.

            • AvailabilityZoneCount (integer) --

              An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled

          • DedicatedMasterType (string) --

            The instance type for a dedicated master node.

          • DedicatedMasterCount (integer) --

            Total number of dedicated master nodes, active and on standby, for the cluster.

          • WarmEnabled (boolean) --

            True to enable warm storage.

          • WarmType (string) --

            The instance type for the Elasticsearch cluster's warm nodes.

          • WarmCount (integer) --

            The number of warm nodes in the cluster.

          • ColdStorageOptions (dict) --

            Specifies the ColdStorageOptions config for Elasticsearch Domain

            • Enabled (boolean) --

              Enable cold storage option. Accepted values true or false

        • Status (dict) --

          Specifies the status of the configuration for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • EBSOptions (dict) --

        Specifies the EBSOptions for the Elasticsearch domain.

        • Options (dict) --

          Specifies the EBS options for the specified Elasticsearch domain.

          • EBSEnabled (boolean) --

            Specifies whether EBS-based storage is enabled.

          • VolumeType (string) --

            Specifies the volume type for EBS-based storage.

          • VolumeSize (integer) --

            Integer to specify the size of an EBS volume.

          • Iops (integer) --

            Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).

          • Throughput (integer) --

            Specifies the Throughput for GP3 EBS volume (SSD).

        • Status (dict) --

          Specifies the status of the EBS options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • AccessPolicies (dict) --

        IAM access policy as a JSON-formatted string.

        • Options (string) --

          The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policies for more information.

        • Status (dict) --

          The status of the access policy for the Elasticsearch domain. See OptionStatus for the status information that's included.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • SnapshotOptions (dict) --

        Specifies the SnapshotOptions for the Elasticsearch domain.

        • Options (dict) --

          Specifies the daily snapshot options specified for the Elasticsearch domain.

          • AutomatedSnapshotStartHour (integer) --

            Specifies the time, in UTC format, when the service takes a daily automated snapshot of the specified Elasticsearch domain. Default value is 0 hours.

        • Status (dict) --

          Specifies the status of a daily automated snapshot.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • VPCOptions (dict) --

        The VPCOptions for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.

        • Options (dict) --

          Specifies the VPC options for the specified Elasticsearch domain.

          • VPCId (string) --

            The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

          • SubnetIds (list) --

            Specifies the subnets for VPC endpoint.

            • (string) --
          • AvailabilityZones (list) --

            The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

            • (string) --
          • SecurityGroupIds (list) --

            Specifies the security groups for VPC endpoint.

            • (string) --
        • Status (dict) --

          Specifies the status of the VPC options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • CognitoOptions (dict) --

        The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana.

        • Options (dict) --

          Specifies the Cognito options for the specified Elasticsearch domain.

          • Enabled (boolean) --

            Specifies the option to enable Cognito for Kibana authentication.

          • UserPoolId (string) --

            Specifies the Cognito user pool ID for Kibana authentication.

          • IdentityPoolId (string) --

            Specifies the Cognito identity pool ID for Kibana authentication.

          • RoleArn (string) --

            Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.

        • Status (dict) --

          Specifies the status of the Cognito options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • EncryptionAtRestOptions (dict) --

        Specifies the EncryptionAtRestOptions for the Elasticsearch domain.

        • Options (dict) --

          Specifies the Encryption At Rest options for the specified Elasticsearch domain.

          • Enabled (boolean) --

            Specifies the option to enable Encryption At Rest.

          • KmsKeyId (string) --

            Specifies the KMS Key ID for Encryption At Rest options.

        • Status (dict) --

          Specifies the status of the Encryption At Rest options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • NodeToNodeEncryptionOptions (dict) --

        Specifies the NodeToNodeEncryptionOptions for the Elasticsearch domain.

        • Options (dict) --

          Specifies the node-to-node encryption options for the specified Elasticsearch domain.

          • Enabled (boolean) --

            Specify true to enable node-to-node encryption.

        • Status (dict) --

          Specifies the status of the node-to-node encryption options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • AdvancedOptions (dict) --

        Specifies the AdvancedOptions for the domain. See Configuring Advanced Options for more information.

        • Options (dict) --

          Specifies the status of advanced options for the specified Elasticsearch domain.

          • (string) --
            • (string) --
        • Status (dict) --

          Specifies the status of OptionStatus for advanced options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • LogPublishingOptions (dict) --

        Log publishing options for the given domain.

        • Options (dict) --

          The log publishing options configured for the Elasticsearch domain.

          • (string) --

            Type of Log File, it can be one of the following:

            • INDEX_SLOW_LOGS: Index slow logs contain insert requests that took more time than configured index query log threshold to execute.
            • SEARCH_SLOW_LOGS: Search slow logs contain search queries that took more time than configured search query log threshold to execute.
            • ES_APPLICATION_LOGS: Elasticsearch application logs contain information about errors and warnings raised during the operation of the service and can be useful for troubleshooting.
            • AUDIT_LOGS: Audit logs contain records of user requests for access from the domain.
            • (dict) --

              Log Publishing option that is set for given domain. Attributes and their details:

              • CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which log needs to be published.
              • Enabled: Whether the log publishing for given log type is enabled or not
              • CloudWatchLogsLogGroupArn (string) --

                ARN of the Cloudwatch log group to which log needs to be published.

              • Enabled (boolean) --

                Specifies whether given log publishing option is enabled or not.

        • Status (dict) --

          The status of the log publishing options for the Elasticsearch domain. See OptionStatus for the status information that's included.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • DomainEndpointOptions (dict) --

        Specifies the DomainEndpointOptions for the Elasticsearch domain.

        • Options (dict) --

          Options to configure endpoint for the Elasticsearch domain.

          • EnforceHTTPS (boolean) --

            Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.

          • TLSSecurityPolicy (string) --

            Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain. It can be one of the following values:

            • Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLSv1.0 and higher.
            • Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2
          • CustomEndpointEnabled (boolean) --

            Specify if custom endpoint should be enabled for the Elasticsearch domain.

          • CustomEndpoint (string) --

            Specify the fully qualified domain for your custom endpoint.

          • CustomEndpointCertificateArn (string) --

            Specify ACM certificate ARN for your custom endpoint.

        • Status (dict) --

          The status of the endpoint options for the Elasticsearch domain. See OptionStatus for the status information that's included.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • AdvancedSecurityOptions (dict) --

        Specifies AdvancedSecurityOptions for the domain.

        • Options (dict) --

          Specifies advanced security options for the specified Elasticsearch domain.

          • Enabled (boolean) --

            True if advanced security is enabled.

          • InternalUserDatabaseEnabled (boolean) --

            True if the internal user database is enabled.

          • SAMLOptions (dict) --

            Describes the SAML application configured for a domain.

            • Enabled (boolean) --

              True if SAML is enabled.

            • Idp (dict) --

              Describes the SAML Identity Provider's information.

              • MetadataContent (string) --

                The Metadata of the SAML application in xml format.

              • EntityId (string) --

                The unique Entity ID of the application in SAML Identity Provider.

            • SubjectKey (string) --

              The key used for matching the SAML Subject attribute.

            • RolesKey (string) --

              The key used for matching the SAML Roles attribute.

            • SessionTimeoutMinutes (integer) --

              The duration, in minutes, after which a user session becomes inactive.

          • AnonymousAuthDisableDate (datetime) --

            Specifies the Anonymous Auth Disable Date when Anonymous Auth is enabled.

          • AnonymousAuthEnabled (boolean) --

            True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.

        • Status (dict) --

          Status of the advanced security options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells the creation date for the entity.

          • UpdateDate (datetime) --

            Timestamp which tells the last updated time for the entity.

          • UpdateVersion (integer) --

            Specifies the latest version for the entity.

          • State (string) --

            Provides the OptionState for the Elasticsearch domain.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • AutoTuneOptions (dict) --

        Specifies AutoTuneOptions for the domain.

        • Options (dict) --

          Specifies Auto-Tune options for the specified Elasticsearch domain.

          • DesiredState (string) --

            Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED.

          • RollbackOnDisable (string) --

            Specifies the rollback state while disabling Auto-Tune for the domain. Valid values are NO_ROLLBACK, DEFAULT_ROLLBACK.

          • MaintenanceSchedules (list) --

            Specifies list of maitenance schedules. See the Developer Guide for more information.

            • (dict) --

              Specifies Auto-Tune maitenance schedule. See the Developer Guide for more information.

              • StartAt (datetime) --

                Specifies timestamp at which Auto-Tune maintenance schedule start.

              • Duration (dict) --

                Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information.

                • Value (integer) --

                  Integer to specify the value of a maintenance schedule duration. See the Developer Guide for more information.

                • Unit (string) --

                  Specifies the unit of a maintenance schedule duration. Valid value is HOURS. See the Developer Guide for more information.

              • CronExpressionForRecurrence (string) --

                Specifies cron expression for a recurring maintenance schedule. See the Developer Guide for more information.

        • Status (dict) --

          Specifies Status of the Auto-Tune options for the specified Elasticsearch domain.

          • CreationDate (datetime) --

            Timestamp which tells Auto-Tune options creation date .

          • UpdateDate (datetime) --

            Timestamp which tells Auto-Tune options last updated time.

          • UpdateVersion (integer) --

            Specifies the Auto-Tune options latest version.

          • State (string) --

            Specifies the AutoTuneState for the Elasticsearch domain.

          • ErrorMessage (string) --

            Specifies the error message while enabling or disabling the Auto-Tune options.

          • PendingDeletion (boolean) --

            Indicates whether the Elasticsearch domain is being deleted.

      • ChangeProgressDetails (dict) --

        Specifies change details of the domain configuration change.

        • ChangeId (string) --

          The unique change identifier associated with a specific domain configuration change.

        • Message (string) --

          Contains an optional message associated with the domain configuration change.

    • DryRunResults (dict) --

      Contains result of DryRun.

      • DeploymentType (string) --

        Specifies the deployment mechanism through which the update shall be applied on the domain. Possible responses are Blue/Green (The update will require a blue/green deployment.) DynamicUpdate (The update can be applied in-place without a Blue/Green deployment required.) Undetermined (The domain is undergoing an update which needs to complete before the deployment type can be predicted.) None (The configuration change matches the current configuration and will not result in any update.)

      • Message (string) --

        Contains an optional message associated with the DryRunResults.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.InvalidTypeException
  • ElasticsearchService.Client.exceptions.LimitExceededException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ValidationException
update_package(**kwargs)

Updates a package for use with Amazon ES domains.

See also: AWS API Documentation

Request Syntax

response = client.update_package(
    PackageID='string',
    PackageSource={
        'S3BucketName': 'string',
        'S3Key': 'string'
    },
    PackageDescription='string',
    CommitMessage='string'
)
Parameters
  • PackageID (string) --

    [REQUIRED]

    Unique identifier for the package.

  • PackageSource (dict) --

    [REQUIRED]

    The S3 location for importing the package specified as S3BucketName and S3Key

    • S3BucketName (string) --

      Name of the bucket containing the package.

    • S3Key (string) --

      Key (file name) of the package.

  • PackageDescription (string) -- New description of the package.
  • CommitMessage (string) -- An info message for the new version which will be shown as part of GetPackageVersionHistoryResponse .
Return type

dict

Returns

Response Syntax

{
    'PackageDetails': {
        'PackageID': 'string',
        'PackageName': 'string',
        'PackageType': 'TXT-DICTIONARY',
        'PackageDescription': 'string',
        'PackageStatus': 'COPYING'|'COPY_FAILED'|'VALIDATING'|'VALIDATION_FAILED'|'AVAILABLE'|'DELETING'|'DELETED'|'DELETE_FAILED',
        'CreatedAt': datetime(2015, 1, 1),
        'LastUpdatedAt': datetime(2015, 1, 1),
        'AvailablePackageVersion': 'string',
        'ErrorDetails': {
            'ErrorType': 'string',
            'ErrorMessage': 'string'
        }
    }
}

Response Structure

  • (dict) --

    Container for response returned by UpdatePackage operation.

    • PackageDetails (dict) --

      Information about the package PackageDetails .

      • PackageID (string) --

        Internal ID of the package.

      • PackageName (string) --

        User specified name of the package.

      • PackageType (string) --

        Currently supports only TXT-DICTIONARY.

      • PackageDescription (string) --

        User-specified description of the package.

      • PackageStatus (string) --

        Current state of the package. Values are COPYING/COPY_FAILED/AVAILABLE/DELETING/DELETE_FAILED

      • CreatedAt (datetime) --

        Timestamp which tells creation date of the package.

      • LastUpdatedAt (datetime) --

      • AvailablePackageVersion (string) --

      • ErrorDetails (dict) --

        Additional information if the package is in an error state. Null otherwise.

        • ErrorType (string) --
        • ErrorMessage (string) --

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.LimitExceededException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.AccessDeniedException
  • ElasticsearchService.Client.exceptions.ValidationException
update_vpc_endpoint(**kwargs)

Modifies an Amazon OpenSearch Service-managed interface VPC endpoint.

See also: AWS API Documentation

Request Syntax

response = client.update_vpc_endpoint(
    VpcEndpointId='string',
    VpcOptions={
        'SubnetIds': [
            'string',
        ],
        'SecurityGroupIds': [
            'string',
        ]
    }
)
Parameters
  • VpcEndpointId (string) --

    [REQUIRED]

    Unique identifier of the VPC endpoint to be updated.

  • VpcOptions (dict) --

    [REQUIRED]

    The security groups and/or subnets to add, remove, or modify.

    • SubnetIds (list) --

      Specifies the subnets for VPC endpoint.

      • (string) --
    • SecurityGroupIds (list) --

      Specifies the security groups for VPC endpoint.

      • (string) --
Return type

dict

Returns

Response Syntax

{
    'VpcEndpoint': {
        'VpcEndpointId': 'string',
        'VpcEndpointOwner': 'string',
        'DomainArn': 'string',
        'VpcOptions': {
            'VPCId': 'string',
            'SubnetIds': [
                'string',
            ],
            'AvailabilityZones': [
                'string',
            ],
            'SecurityGroupIds': [
                'string',
            ]
        },
        'Status': 'CREATING'|'CREATE_FAILED'|'ACTIVE'|'UPDATING'|'UPDATE_FAILED'|'DELETING'|'DELETE_FAILED',
        'Endpoint': 'string'
    }
}

Response Structure

  • (dict) --

    Contains the configuration and status of the VPC endpoint being updated.

    • VpcEndpoint (dict) --

      The endpoint to be updated.

      • VpcEndpointId (string) --

        The unique identifier of the endpoint.

      • VpcEndpointOwner (string) --

        The creator of the endpoint.

      • DomainArn (string) --

        The Amazon Resource Name (ARN) of the domain associated with the endpoint.

      • VpcOptions (dict) --

        Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC endpoint.

        • VPCId (string) --

          The VPC Id for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

        • SubnetIds (list) --

          Specifies the subnets for VPC endpoint.

          • (string) --
        • AvailabilityZones (list) --

          The availability zones for the Elasticsearch domain. Exists only if the domain was created with VPCOptions.

          • (string) --
        • SecurityGroupIds (list) --

          Specifies the security groups for VPC endpoint.

          • (string) --
      • Status (string) --

        The current status of the endpoint.

      • Endpoint (string) --

        The connection endpoint ID for connecting to the domain.

Exceptions

  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.InternalException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.ConflictException
  • ElasticsearchService.Client.exceptions.BaseException
upgrade_elasticsearch_domain(**kwargs)

Allows you to either upgrade your domain or perform an Upgrade eligibility check to a compatible Elasticsearch version.

See also: AWS API Documentation

Request Syntax

response = client.upgrade_elasticsearch_domain(
    DomainName='string',
    TargetVersion='string',
    PerformCheckOnly=True|False
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

  • TargetVersion (string) --

    [REQUIRED]

    The version of Elasticsearch that you intend to upgrade the domain to.

  • PerformCheckOnly (boolean) -- This flag, when set to True, indicates that an Upgrade Eligibility Check needs to be performed. This will not actually perform the Upgrade.
Return type

dict

Returns

Response Syntax

{
    'DomainName': 'string',
    'TargetVersion': 'string',
    'PerformCheckOnly': True|False,
    'ChangeProgressDetails': {
        'ChangeId': 'string',
        'Message': 'string'
    }
}

Response Structure

  • (dict) --

    Container for response returned by UpgradeElasticsearchDomain operation.

    • DomainName (string) --

      The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

    • TargetVersion (string) --

      The version of Elasticsearch that you intend to upgrade the domain to.

    • PerformCheckOnly (boolean) --

      This flag, when set to True, indicates that an Upgrade Eligibility Check needs to be performed. This will not actually perform the Upgrade.

    • ChangeProgressDetails (dict) --

      Specifies change details of the domain configuration change.

      • ChangeId (string) --

        The unique change identifier associated with a specific domain configuration change.

      • Message (string) --

        Contains an optional message associated with the domain configuration change.

Exceptions

  • ElasticsearchService.Client.exceptions.BaseException
  • ElasticsearchService.Client.exceptions.ResourceNotFoundException
  • ElasticsearchService.Client.exceptions.ResourceAlreadyExistsException
  • ElasticsearchService.Client.exceptions.DisabledOperationException
  • ElasticsearchService.Client.exceptions.ValidationException
  • ElasticsearchService.Client.exceptions.InternalException

Paginators

The available paginators are:

class ElasticsearchService.Paginator.DescribeReservedElasticsearchInstanceOfferings
paginator = client.get_paginator('describe_reserved_elasticsearch_instance_offerings')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ElasticsearchService.Client.describe_reserved_elasticsearch_instance_offerings().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    ReservedElasticsearchInstanceOfferingId='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • ReservedElasticsearchInstanceOfferingId (string) -- The offering identifier filter value. Use this parameter to show only the available offering that matches the specified reservation identifier.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'ReservedElasticsearchInstanceOfferings': [
        {
            'ReservedElasticsearchInstanceOfferingId': 'string',
            'ElasticsearchInstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
            'Duration': 123,
            'FixedPrice': 123.0,
            'UsagePrice': 123.0,
            'CurrencyCode': 'string',
            'PaymentOption': 'ALL_UPFRONT'|'PARTIAL_UPFRONT'|'NO_UPFRONT',
            'RecurringCharges': [
                {
                    'RecurringChargeAmount': 123.0,
                    'RecurringChargeFrequency': 'string'
                },
            ]
        },
    ]
}

Response Structure

  • (dict) --

    Container for results from DescribeReservedElasticsearchInstanceOfferings

    • ReservedElasticsearchInstanceOfferings (list) --

      List of reserved Elasticsearch instance offerings

      • (dict) --

        Details of a reserved Elasticsearch instance offering.

        • ReservedElasticsearchInstanceOfferingId (string) --

          The Elasticsearch reserved instance offering identifier.

        • ElasticsearchInstanceType (string) --

          The Elasticsearch instance type offered by the reserved instance offering.

        • Duration (integer) --

          The duration, in seconds, for which the offering will reserve the Elasticsearch instance.

        • FixedPrice (float) --

          The upfront fixed charge you will pay to purchase the specific reserved Elasticsearch instance offering.

        • UsagePrice (float) --

          The rate you are charged for each hour the domain that is using the offering is running.

        • CurrencyCode (string) --

          The currency code for the reserved Elasticsearch instance offering.

        • PaymentOption (string) --

          Payment option for the reserved Elasticsearch instance offering

        • RecurringCharges (list) --

          The charge to your account regardless of whether you are creating any domains using the instance offering.

          • (dict) --

            Contains the specific price and frequency of a recurring charges for a reserved Elasticsearch instance, or for a reserved Elasticsearch instance offering.

            • RecurringChargeAmount (float) --

              The monetary amount of the recurring charge.

            • RecurringChargeFrequency (string) --

              The frequency of the recurring charge.

class ElasticsearchService.Paginator.DescribeReservedElasticsearchInstances
paginator = client.get_paginator('describe_reserved_elasticsearch_instances')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ElasticsearchService.Client.describe_reserved_elasticsearch_instances().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    ReservedElasticsearchInstanceId='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • ReservedElasticsearchInstanceId (string) -- The reserved instance identifier filter value. Use this parameter to show only the reservation that matches the specified reserved Elasticsearch instance ID.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'ReservedElasticsearchInstances': [
        {
            'ReservationName': 'string',
            'ReservedElasticsearchInstanceId': 'string',
            'ReservedElasticsearchInstanceOfferingId': 'string',
            'ElasticsearchInstanceType': 'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
            'StartTime': datetime(2015, 1, 1),
            'Duration': 123,
            'FixedPrice': 123.0,
            'UsagePrice': 123.0,
            'CurrencyCode': 'string',
            'ElasticsearchInstanceCount': 123,
            'State': 'string',
            'PaymentOption': 'ALL_UPFRONT'|'PARTIAL_UPFRONT'|'NO_UPFRONT',
            'RecurringCharges': [
                {
                    'RecurringChargeAmount': 123.0,
                    'RecurringChargeFrequency': 'string'
                },
            ]
        },
    ]
}

Response Structure

  • (dict) --

    Container for results from DescribeReservedElasticsearchInstances

    • ReservedElasticsearchInstances (list) --

      List of reserved Elasticsearch instances.

      • (dict) --

        Details of a reserved Elasticsearch instance.

        • ReservationName (string) --

          The customer-specified identifier to track this reservation.

        • ReservedElasticsearchInstanceId (string) --

          The unique identifier for the reservation.

        • ReservedElasticsearchInstanceOfferingId (string) --

          The offering identifier.

        • ElasticsearchInstanceType (string) --

          The Elasticsearch instance type offered by the reserved instance offering.

        • StartTime (datetime) --

          The time the reservation started.

        • Duration (integer) --

          The duration, in seconds, for which the Elasticsearch instance is reserved.

        • FixedPrice (float) --

          The upfront fixed charge you will paid to purchase the specific reserved Elasticsearch instance offering.

        • UsagePrice (float) --

          The rate you are charged for each hour for the domain that is using this reserved instance.

        • CurrencyCode (string) --

          The currency code for the reserved Elasticsearch instance offering.

        • ElasticsearchInstanceCount (integer) --

          The number of Elasticsearch instances that have been reserved.

        • State (string) --

          The state of the reserved Elasticsearch instance.

        • PaymentOption (string) --

          The payment option as defined in the reserved Elasticsearch instance offering.

        • RecurringCharges (list) --

          The charge to your account regardless of whether you are creating any domains using the instance offering.

          • (dict) --

            Contains the specific price and frequency of a recurring charges for a reserved Elasticsearch instance, or for a reserved Elasticsearch instance offering.

            • RecurringChargeAmount (float) --

              The monetary amount of the recurring charge.

            • RecurringChargeFrequency (string) --

              The frequency of the recurring charge.

class ElasticsearchService.Paginator.GetUpgradeHistory
paginator = client.get_paginator('get_upgrade_history')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ElasticsearchService.Client.get_upgrade_history().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    DomainName='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • DomainName (string) --

    [REQUIRED]

    The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'UpgradeHistories': [
        {
            'UpgradeName': 'string',
            'StartTimestamp': datetime(2015, 1, 1),
            'UpgradeStatus': 'IN_PROGRESS'|'SUCCEEDED'|'SUCCEEDED_WITH_ISSUES'|'FAILED',
            'StepsList': [
                {
                    'UpgradeStep': 'PRE_UPGRADE_CHECK'|'SNAPSHOT'|'UPGRADE',
                    'UpgradeStepStatus': 'IN_PROGRESS'|'SUCCEEDED'|'SUCCEEDED_WITH_ISSUES'|'FAILED',
                    'Issues': [
                        'string',
                    ],
                    'ProgressPercent': 123.0
                },
            ]
        },
    ],

}

Response Structure

  • (dict) --

    Container for response returned by GetUpgradeHistory operation.

    • UpgradeHistories (list) --

      A list of UpgradeHistory objects corresponding to each Upgrade or Upgrade Eligibility Check performed on a domain returned as part of GetUpgradeHistoryResponse object.

      • (dict) --

        History of the last 10 Upgrades and Upgrade Eligibility Checks.

        • UpgradeName (string) --

          A string that describes the update briefly

        • StartTimestamp (datetime) --

          UTC Timestamp at which the Upgrade API call was made in "yyyy-MM-ddTHH:mm:ssZ" format.

        • UpgradeStatus (string) --

          The overall status of the update. The status can take one of the following values:

          • In Progress
          • Succeeded
          • Succeeded with Issues
          • Failed
        • StepsList (list) --

          A list of UpgradeStepItem s representing information about each step performed as pard of a specific Upgrade or Upgrade Eligibility Check.

          • (dict) --

            Represents a single step of the Upgrade or Upgrade Eligibility Check workflow.

            • UpgradeStep (string) --

              Represents one of 3 steps that an Upgrade or Upgrade Eligibility Check does through:

              • PreUpgradeCheck
              • Snapshot
              • Upgrade
            • UpgradeStepStatus (string) --

              The status of a particular step during an upgrade. The status can take one of the following values:

              • In Progress
              • Succeeded
              • Succeeded with Issues
              • Failed
            • Issues (list) --

              A list of strings containing detailed information about the errors encountered in a particular step.

              • (string) --
            • ProgressPercent (float) --

              The Floating point value representing progress percentage of a particular step.

class ElasticsearchService.Paginator.ListElasticsearchInstanceTypes
paginator = client.get_paginator('list_elasticsearch_instance_types')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ElasticsearchService.Client.list_elasticsearch_instance_types().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    ElasticsearchVersion='string',
    DomainName='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • ElasticsearchVersion (string) --

    [REQUIRED]

    Version of Elasticsearch for which list of supported elasticsearch instance types are needed.

  • DomainName (string) -- DomainName represents the name of the Domain that we are trying to modify. This should be present only if we are querying for list of available Elasticsearch instance types when modifying existing domain.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'ElasticsearchInstanceTypes': [
        'm3.medium.elasticsearch'|'m3.large.elasticsearch'|'m3.xlarge.elasticsearch'|'m3.2xlarge.elasticsearch'|'m4.large.elasticsearch'|'m4.xlarge.elasticsearch'|'m4.2xlarge.elasticsearch'|'m4.4xlarge.elasticsearch'|'m4.10xlarge.elasticsearch'|'m5.large.elasticsearch'|'m5.xlarge.elasticsearch'|'m5.2xlarge.elasticsearch'|'m5.4xlarge.elasticsearch'|'m5.12xlarge.elasticsearch'|'r5.large.elasticsearch'|'r5.xlarge.elasticsearch'|'r5.2xlarge.elasticsearch'|'r5.4xlarge.elasticsearch'|'r5.12xlarge.elasticsearch'|'c5.large.elasticsearch'|'c5.xlarge.elasticsearch'|'c5.2xlarge.elasticsearch'|'c5.4xlarge.elasticsearch'|'c5.9xlarge.elasticsearch'|'c5.18xlarge.elasticsearch'|'ultrawarm1.medium.elasticsearch'|'ultrawarm1.large.elasticsearch'|'t2.micro.elasticsearch'|'t2.small.elasticsearch'|'t2.medium.elasticsearch'|'r3.large.elasticsearch'|'r3.xlarge.elasticsearch'|'r3.2xlarge.elasticsearch'|'r3.4xlarge.elasticsearch'|'r3.8xlarge.elasticsearch'|'i2.xlarge.elasticsearch'|'i2.2xlarge.elasticsearch'|'d2.xlarge.elasticsearch'|'d2.2xlarge.elasticsearch'|'d2.4xlarge.elasticsearch'|'d2.8xlarge.elasticsearch'|'c4.large.elasticsearch'|'c4.xlarge.elasticsearch'|'c4.2xlarge.elasticsearch'|'c4.4xlarge.elasticsearch'|'c4.8xlarge.elasticsearch'|'r4.large.elasticsearch'|'r4.xlarge.elasticsearch'|'r4.2xlarge.elasticsearch'|'r4.4xlarge.elasticsearch'|'r4.8xlarge.elasticsearch'|'r4.16xlarge.elasticsearch'|'i3.large.elasticsearch'|'i3.xlarge.elasticsearch'|'i3.2xlarge.elasticsearch'|'i3.4xlarge.elasticsearch'|'i3.8xlarge.elasticsearch'|'i3.16xlarge.elasticsearch',
    ],

}

Response Structure

  • (dict) --

    Container for the parameters returned by ListElasticsearchInstanceTypes operation.

    • ElasticsearchInstanceTypes (list) --

      List of instance types supported by Amazon Elasticsearch service for given ElasticsearchVersion

      • (string) --

class ElasticsearchService.Paginator.ListElasticsearchVersions
paginator = client.get_paginator('list_elasticsearch_versions')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ElasticsearchService.Client.list_elasticsearch_versions().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'ElasticsearchVersions': [
        'string',
    ],

}

Response Structure

  • (dict) --

    Container for the parameters for response received from ListElasticsearchVersions operation.

    • ElasticsearchVersions (list) --

      List of supported elastic search versions.

      • (string) --