Class: Aws::OpenSearchServerless::Client

Inherits:
Seahorse::Client::Base
  • Object
show all
Includes:
ClientStubs
Defined in:
lib/aws-sdk-opensearchserverless/client.rb

Overview

An API client for OpenSearchServerless. To construct a client, you need to configure a ‘:region` and `:credentials`.

client = Aws::OpenSearchServerless::Client.new(
  region: region_name,
  credentials: credentials,
  # ...
)

For details on configuring region and credentials see the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).

See #initialize for a full list of supported configuration options.

Class Attribute Summary collapse

API Operations collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Client

Returns a new instance of Client.

Parameters:

  • options (Hash)

Options Hash (options):

  • :plugins (Array<Seahorse::Client::Plugin>) — default: []]

    A list of plugins to apply to the client. Each plugin is either a class name or an instance of a plugin class.

  • :credentials (required, Aws::CredentialProvider)

    Your AWS credentials used for authentication. This can be any class that includes and implements ‘Aws::CredentialProvider`, or instance of any one of the following classes:

    • ‘Aws::Credentials` - Used for configuring static, non-refreshing credentials.

    • ‘Aws::SharedCredentials` - Used for loading static credentials from a shared file, such as `~/.aws/config`.

    • ‘Aws::AssumeRoleCredentials` - Used when you need to assume a role.

    • ‘Aws::AssumeRoleWebIdentityCredentials` - Used when you need to assume a role after providing credentials via the web.

    • ‘Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an access token generated from `aws login`.

    • ‘Aws::ProcessCredentials` - Used for loading credentials from a process that outputs to stdout.

    • ‘Aws::InstanceProfileCredentials` - Used for loading credentials from an EC2 IMDS on an EC2 instance.

    • ‘Aws::ECSCredentials` - Used for loading credentials from instances running in ECS.

    • ‘Aws::CognitoIdentityCredentials` - Used for loading credentials from the Cognito Identity service.

    When ‘:credentials` are not configured directly, the following locations will be searched for credentials:

    • Aws.config`

    • The ‘:access_key_id`, `:secret_access_key`, `:session_token`, and `:account_id` options.

    • ENV`, `ENV`, `ENV`, and `ENV`.

    • ‘~/.aws/credentials`

    • ‘~/.aws/config`

    • EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive. Construct and pass an instance of ‘Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to enable retries and extended timeouts. Instance profile credential fetching can be disabled by setting `ENV` to `true`.

  • :region (required, String)

    The AWS region to connect to. The configured ‘:region` is used to determine the service `:endpoint`. When not passed, a default `:region` is searched for in the following locations:

  • :access_key_id (String)
  • :account_id (String)
  • :active_endpoint_cache (Boolean) — default: false

    When set to ‘true`, a thread polling for endpoints will be running in the background every 60 secs (default). Defaults to `false`.

  • :adaptive_retry_wait_to_fill (Boolean) — default: true

    Used only in ‘adaptive` retry mode. When true, the request will sleep until there is sufficent client side capacity to retry the request. When false, the request will raise a `RetryCapacityNotAvailableError` and will not retry instead of sleeping.

  • :auth_scheme_preference (Array<String>)

    A list of preferred authentication schemes to use when making a request. Supported values are: ‘sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV` or in shared config as `auth_scheme_preference`, the value should be a comma-separated list.

  • :client_side_monitoring (Boolean) — default: false

    When ‘true`, client-side metrics will be collected for all API requests from this client.

  • :client_side_monitoring_client_id (String) — default: ""

    Allows you to provide an identifier for this client which will be attached to all generated client side metrics. Defaults to an empty string.

  • :client_side_monitoring_host (String) — default: "127.0.0.1"

    Allows you to specify the DNS hostname or IPv4 or IPv6 address that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_port (Integer) — default: 31000

    Required for publishing client metrics. The port that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher) — default: Aws::ClientSideMonitoring::Publisher

    Allows you to provide a custom client-side monitoring publisher class. By default, will use the Client Side Monitoring Agent Publisher.

  • :convert_params (Boolean) — default: true

    When ‘true`, an attempt is made to coerce request parameters into the required types.

  • :correct_clock_skew (Boolean) — default: true

    Used only in ‘standard` and adaptive retry modes. Specifies whether to apply a clock skew correction and retry requests with skewed client clocks.

  • :defaults_mode (String) — default: "legacy"

    See DefaultsModeConfiguration for a list of the accepted modes and the configuration defaults that are included.

  • :disable_host_prefix_injection (Boolean) — default: false

    When ‘true`, the SDK will not prepend the modeled host prefix to the endpoint.

  • :disable_request_compression (Boolean) — default: false

    When set to ‘true’ the request body will not be compressed for supported operations.

  • :endpoint (String, URI::HTTPS, URI::HTTP)

    Normally you should not configure the ‘:endpoint` option directly. This is normally constructed from the `:region` option. Configuring `:endpoint` is normally reserved for connecting to test or custom endpoints. The endpoint should be a URI formatted like:

    'http://example.com'
    'https://example.com'
    'http://example.com:123'
    
  • :endpoint_cache_max_entries (Integer) — default: 1000

    Used for the maximum size limit of the LRU cache storing endpoints data for endpoint discovery enabled operations. Defaults to 1000.

  • :endpoint_cache_max_threads (Integer) — default: 10

    Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.

  • :endpoint_cache_poll_interval (Integer) — default: 60

    When :endpoint_discovery and :active_endpoint_cache is enabled, Use this option to config the time interval in seconds for making requests fetching endpoints information. Defaults to 60 sec.

  • :endpoint_discovery (Boolean) — default: false

    When set to ‘true`, endpoint discovery will be enabled for operations when available.

  • :ignore_configured_endpoint_urls (Boolean)

    Setting to true disables use of endpoint URLs provided via environment variables and the shared configuration file.

  • :log_formatter (Aws::Log::Formatter) — default: Aws::Log::Formatter.default

    The log formatter.

  • :log_level (Symbol) — default: :info

    The log level to send messages to the ‘:logger` at.

  • :logger (Logger)

    The Logger instance to send log messages to. If this option is not set, logging will be disabled.

  • :max_attempts (Integer) — default: 3

    An integer representing the maximum number attempts that will be made for a single request, including the initial attempt. For example, setting this value to 5 will result in a request being retried up to 4 times. Used in ‘standard` and `adaptive` retry modes.

  • :profile (String) — default: "default"

    Used when loading credentials from the shared credentials file at ‘HOME/.aws/credentials`. When not specified, ’default’ is used.

  • :request_checksum_calculation (String) — default: "when_supported"

    Determines when a checksum will be calculated for request payloads. Values are:

    • ‘when_supported` - (default) When set, a checksum will be calculated for all request payloads of operations modeled with the `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a `requestAlgorithmMember` is modeled.

    • ‘when_required` - When set, a checksum will only be calculated for request payloads of operations modeled with the `httpChecksum` trait where `requestChecksumRequired` is `true` or where a `requestAlgorithmMember` is modeled and supplied.

  • :request_min_compression_size_bytes (Integer) — default: 10240

    The minimum size in bytes that triggers compression for request bodies. The value must be non-negative integer value between 0 and 10485780 bytes inclusive.

  • :response_checksum_validation (String) — default: "when_supported"

    Determines when checksum validation will be performed on response payloads. Values are:

    • ‘when_supported` - (default) When set, checksum validation is performed on all response payloads of operations modeled with the `httpChecksum` trait where `responseAlgorithms` is modeled, except when no modeled checksum algorithms are supported.

    • ‘when_required` - When set, checksum validation is not performed on response payloads of operations unless the checksum algorithm is supported and the `requestValidationModeMember` member is set to `ENABLED`.

  • :retry_backoff (Proc)

    A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay. This option is only used in the ‘legacy` retry mode.

  • :retry_base_delay (Float) — default: 0.3

    The base delay in seconds used by the default backoff function. This option is only used in the ‘legacy` retry mode.

  • :retry_jitter (Symbol) — default: :none

    A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number. This option is only used in the ‘legacy` retry mode.

    @see www.awsarchitectureblog.com/2015/03/backoff.html

  • :retry_limit (Integer) — default: 3

    The maximum number of times to retry failed requests. Only ~ 500 level server errors and certain ~ 400 level client errors are retried. Generally, these are throttling errors, data checksum errors, networking errors, timeout errors, auth errors, endpoint discovery, and errors from expired credentials. This option is only used in the ‘legacy` retry mode.

  • :retry_max_delay (Integer) — default: 0

    The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function. This option is only used in the ‘legacy` retry mode.

  • :retry_mode (String) — default: "legacy"

    Specifies which retry algorithm to use. Values are:

    • ‘legacy` - The pre-existing retry behavior. This is default value if no retry mode is provided.

    • ‘standard` - A standardized set of retry rules across the AWS SDKs. This includes support for retry quotas, which limit the number of unsuccessful retries a client can make.

    • ‘adaptive` - An experimental retry mode that includes all the functionality of `standard` mode along with automatic client side throttling. This is a provisional mode that may change behavior in the future.

  • :sdk_ua_app_id (String)

    A unique and opaque application ID that is appended to the User-Agent header as app/sdk_ua_app_id. It should have a maximum length of 50. This variable is sourced from environment variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.

  • :secret_access_key (String)
  • :session_token (String)
  • :sigv4a_signing_region_set (Array)

    A list of regions that should be signed with SigV4a signing. When not passed, a default ‘:sigv4a_signing_region_set` is searched for in the following locations:

  • :simple_json (Boolean) — default: false

    Disables request parameter conversion, validation, and formatting. Also disables response data type conversions. The request parameters hash must be formatted exactly as the API expects.This option is useful when you want to ensure the highest level of performance by avoiding overhead of walking request parameters and response data structures.

  • :stub_responses (Boolean) — default: false

    Causes the client to return stubbed responses. By default fake responses are generated and returned. You can specify the response data to return or errors to raise by calling ClientStubs#stub_responses. See ClientStubs for more information.

    ** Please note ** When response stubbing is enabled, no HTTP requests are made, and retries are disabled.

  • :telemetry_provider (Aws::Telemetry::TelemetryProviderBase) — default: Aws::Telemetry::NoOpTelemetryProvider

    Allows you to provide a telemetry provider, which is used to emit telemetry data. By default, uses ‘NoOpTelemetryProvider` which will not record or emit any telemetry data. The SDK supports the following telemetry providers:

    • OpenTelemetry (OTel) - To use the OTel provider, install and require the

    ‘opentelemetry-sdk` gem and then, pass in an instance of a `Aws::Telemetry::OTelProvider` for telemetry provider.

  • :token_provider (Aws::TokenProvider)

    Your Bearer token used for authentication. This can be any class that includes and implements ‘Aws::TokenProvider`, or instance of any one of the following classes:

    • ‘Aws::StaticTokenProvider` - Used for configuring static, non-refreshing tokens.

    • ‘Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an access token generated from `aws login`.

    When ‘:token_provider` is not configured directly, the `Aws::TokenProviderChain` will be used to search for tokens configured for your profile in shared configuration files.

  • :use_dualstack_endpoint (Boolean)

    When set to ‘true`, dualstack enabled endpoints (with `.aws` TLD) will be used if available.

  • :use_fips_endpoint (Boolean)

    When set to ‘true`, fips compatible endpoints will be used if available. When a `fips` region is used, the region is normalized and this config is set to `true`.

  • :validate_params (Boolean) — default: true

    When ‘true`, request parameters are validated before sending the request.

  • :endpoint_provider (Aws::OpenSearchServerless::EndpointProvider)

    The endpoint provider used to resolve endpoints. Any object that responds to ‘#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::OpenSearchServerless::EndpointParameters`.

  • :http_continue_timeout (Float) — default: 1

    The number of seconds to wait for a 100-continue response before sending the request body. This option has no effect unless the request has “Expect” header set to “100-continue”. Defaults to ‘nil` which disables this behaviour. This value can safely be set per request on the session.

  • :http_idle_timeout (Float) — default: 5

    The number of seconds a connection is allowed to sit idle before it is considered stale. Stale connections are closed and removed from the pool before making a request.

  • :http_open_timeout (Float) — default: 15

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_proxy (URI::HTTP, String)

    A proxy to send requests through. Formatted like ‘proxy.com:123’.

  • :http_read_timeout (Float) — default: 60

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_wire_trace (Boolean) — default: false

    When ‘true`, HTTP debug output will be sent to the `:logger`.

  • :on_chunk_received (Proc)

    When a Proc object is provided, it will be used as callback when each chunk of the response body is received. It provides three arguments: the chunk, the number of bytes received, and the total number of bytes in the response (or nil if the server did not send a ‘content-length`).

  • :on_chunk_sent (Proc)

    When a Proc object is provided, it will be used as callback when each chunk of the request body is sent. It provides three arguments: the chunk, the number of bytes read from the body, and the total number of bytes in the body.

  • :raise_response_errors (Boolean) — default: true

    When ‘true`, response errors are raised.

  • :ssl_ca_bundle (String)

    Full path to the SSL certificate authority bundle file that should be used when verifying peer certificates. If you do not pass ‘:ssl_ca_bundle` or `:ssl_ca_directory` the the system default will be used if available.

  • :ssl_ca_directory (String)

    Full path of the directory that contains the unbundled SSL certificate authority files for verifying peer certificates. If you do not pass ‘:ssl_ca_bundle` or `:ssl_ca_directory` the the system default will be used if available.

  • :ssl_ca_store (String)

    Sets the X509::Store to verify peer certificate.

  • :ssl_cert (OpenSSL::X509::Certificate)

    Sets a client certificate when creating http connections.

  • :ssl_key (OpenSSL::PKey)

    Sets a client key when creating http connections.

  • :ssl_timeout (Float)

    Sets the SSL timeout in seconds

  • :ssl_verify_peer (Boolean) — default: true

    When ‘true`, SSL peer certificates are verified when establishing a connection.



480
481
482
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 480

def initialize(*args)
  super
end

Class Attribute Details

.identifierObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



2672
2673
2674
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2672

def identifier
  @identifier
end

Class Method Details

.errors_moduleObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



2675
2676
2677
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2675

def errors_module
  Errors
end

Instance Method Details

#batch_get_collection(params = {}) ⇒ Types::BatchGetCollectionResponse

Returns attributes for one or more collections, including the collection endpoint, the OpenSearch Dashboards endpoint, and FIPS-compliant endpoints. For more information, see [Creating and managing Amazon OpenSearch Serverless collections].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-manage.html

Examples:

Request syntax with placeholder values


resp = client.batch_get_collection({
  ids: ["CollectionId"],
  names: ["CollectionName"],
})

Response structure


resp.collection_details #=> Array
resp.collection_details[0].id #=> String
resp.collection_details[0].name #=> String
resp.collection_details[0].status #=> String, one of "CREATING", "DELETING", "ACTIVE", "FAILED"
resp.collection_details[0].type #=> String, one of "SEARCH", "TIMESERIES", "VECTORSEARCH"
resp.collection_details[0].description #=> String
resp.collection_details[0].arn #=> String
resp.collection_details[0].kms_key_arn #=> String
resp.collection_details[0].standby_replicas #=> String, one of "ENABLED", "DISABLED"
resp.collection_details[0].vector_options.serverless_vector_acceleration #=> String, one of "ENABLED", "DISABLED", "ALLOWED"
resp.collection_details[0].created_date #=> Integer
resp.collection_details[0].last_modified_date #=> Integer
resp.collection_details[0].collection_endpoint #=> String
resp.collection_details[0].dashboard_endpoint #=> String
resp.collection_details[0].fips_endpoints.collection_endpoint #=> String
resp.collection_details[0].fips_endpoints.dashboard_endpoint #=> String
resp.collection_details[0].failure_code #=> String
resp.collection_details[0].failure_message #=> String
resp.collection_error_details #=> Array
resp.collection_error_details[0].id #=> String
resp.collection_error_details[0].name #=> String
resp.collection_error_details[0].error_message #=> String
resp.collection_error_details[0].error_code #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

Returns:

See Also:



550
551
552
553
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 550

def batch_get_collection(params = {}, options = {})
  req = build_request(:batch_get_collection, params)
  req.send_request(options)
end

#batch_get_effective_lifecycle_policy(params = {}) ⇒ Types::BatchGetEffectiveLifecyclePolicyResponse

Returns a list of successful and failed retrievals for the OpenSearch Serverless indexes. For more information, see [Viewing data lifecycle policies].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-lifecycle.html#serverless-lifecycle-list

Examples:

Request syntax with placeholder values


resp = client.batch_get_effective_lifecycle_policy({
  resource_identifiers: [ # required
    {
      type: "retention", # required, accepts retention
      resource: "ResourceName", # required
    },
  ],
})

Response structure


resp.effective_lifecycle_policy_details #=> Array
resp.effective_lifecycle_policy_details[0].type #=> String, one of "retention"
resp.effective_lifecycle_policy_details[0].resource #=> String
resp.effective_lifecycle_policy_details[0].policy_name #=> String
resp.effective_lifecycle_policy_details[0].resource_type #=> String, one of "index"
resp.effective_lifecycle_policy_details[0].retention_period #=> String
resp.effective_lifecycle_policy_details[0].no_min_retention_period #=> Boolean
resp.effective_lifecycle_policy_error_details #=> Array
resp.effective_lifecycle_policy_error_details[0].type #=> String, one of "retention"
resp.effective_lifecycle_policy_error_details[0].resource #=> String
resp.effective_lifecycle_policy_error_details[0].error_message #=> String
resp.effective_lifecycle_policy_error_details[0].error_code #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

Returns:

See Also:



601
602
603
604
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 601

def batch_get_effective_lifecycle_policy(params = {}, options = {})
  req = build_request(:batch_get_effective_lifecycle_policy, params)
  req.send_request(options)
end

#batch_get_lifecycle_policy(params = {}) ⇒ Types::BatchGetLifecyclePolicyResponse

Returns one or more configured OpenSearch Serverless lifecycle policies. For more information, see [Viewing data lifecycle policies].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-lifecycle.html#serverless-lifecycle-list

Examples:

Request syntax with placeholder values


resp = client.batch_get_lifecycle_policy({
  identifiers: [ # required
    {
      type: "retention", # required, accepts retention
      name: "PolicyName", # required
    },
  ],
})

Response structure


resp.lifecycle_policy_details #=> Array
resp.lifecycle_policy_details[0].type #=> String, one of "retention"
resp.lifecycle_policy_details[0].name #=> String
resp.lifecycle_policy_details[0].policy_version #=> String
resp.lifecycle_policy_details[0].description #=> String
resp.lifecycle_policy_details[0].created_date #=> Integer
resp.lifecycle_policy_details[0].last_modified_date #=> Integer
resp.lifecycle_policy_error_details #=> Array
resp.lifecycle_policy_error_details[0].type #=> String, one of "retention"
resp.lifecycle_policy_error_details[0].name #=> String
resp.lifecycle_policy_error_details[0].error_message #=> String
resp.lifecycle_policy_error_details[0].error_code #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

Returns:

See Also:



652
653
654
655
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 652

def batch_get_lifecycle_policy(params = {}, options = {})
  req = build_request(:batch_get_lifecycle_policy, params)
  req.send_request(options)
end

#batch_get_vpc_endpoint(params = {}) ⇒ Types::BatchGetVpcEndpointResponse

Returns attributes for one or more VPC endpoints associated with the current account. For more information, see [Access Amazon OpenSearch Serverless using an interface endpoint].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-vpc.html

Examples:

Request syntax with placeholder values


resp = client.batch_get_vpc_endpoint({
  ids: ["VpcEndpointId"], # required
})

Response structure


resp.vpc_endpoint_details #=> Array
resp.vpc_endpoint_details[0].id #=> String
resp.vpc_endpoint_details[0].name #=> String
resp.vpc_endpoint_details[0].vpc_id #=> String
resp.vpc_endpoint_details[0].subnet_ids #=> Array
resp.vpc_endpoint_details[0].subnet_ids[0] #=> String
resp.vpc_endpoint_details[0].security_group_ids #=> Array
resp.vpc_endpoint_details[0].security_group_ids[0] #=> String
resp.vpc_endpoint_details[0].status #=> String, one of "PENDING", "DELETING", "ACTIVE", "FAILED"
resp.vpc_endpoint_details[0].created_date #=> Integer
resp.vpc_endpoint_details[0].failure_code #=> String
resp.vpc_endpoint_details[0].failure_message #=> String
resp.vpc_endpoint_error_details #=> Array
resp.vpc_endpoint_error_details[0].id #=> String
resp.vpc_endpoint_error_details[0].error_message #=> String
resp.vpc_endpoint_error_details[0].error_code #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :ids (required, Array<String>)

    A list of VPC endpoint identifiers.

Returns:

See Also:



702
703
704
705
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 702

def batch_get_vpc_endpoint(params = {}, options = {})
  req = build_request(:batch_get_vpc_endpoint, params)
  req.send_request(options)
end

#build_request(operation_name, params = {}) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • params ({}) (defaults to: {})


2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2645

def build_request(operation_name, params = {})
  handlers = @handlers.for(operation_name)
  tracer = config.telemetry_provider.tracer_provider.tracer(
    Aws::Telemetry.module_to_tracer_name('Aws::OpenSearchServerless')
  )
  context = Seahorse::Client::RequestContext.new(
    operation_name: operation_name,
    operation: config.api.operation(operation_name),
    client: self,
    params: params,
    config: config,
    tracer: tracer
  )
  context[:gem_name] = 'aws-sdk-opensearchserverless'
  context[:gem_version] = '1.50.0'
  Seahorse::Client::Request.new(handlers, context)
end

#create_access_policy(params = {}) ⇒ Types::CreateAccessPolicyResponse

Creates a data access policy for OpenSearch Serverless. Access policies limit access to collections and the resources within them, and allow a user to access that data irrespective of the access mechanism or network source. For more information, see [Data access control for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-data-access.html

Examples:

Request syntax with placeholder values


resp = client.create_access_policy({
  type: "data", # required, accepts data
  name: "PolicyName", # required
  description: "PolicyDescription",
  policy: "PolicyDocument", # required
  client_token: "ClientToken",
})

Response structure


resp.access_policy_detail.type #=> String, one of "data"
resp.access_policy_detail.name #=> String
resp.access_policy_detail.policy_version #=> String
resp.access_policy_detail.description #=> String
resp.access_policy_detail.created_date #=> Integer
resp.access_policy_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of policy.

  • :name (required, String)

    The name of the policy.

  • :description (String)

    A description of the policy. Typically used to store information about the permissions defined in the policy.

  • :policy (required, String)

    The JSON policy document to use as the content for the policy.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



764
765
766
767
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 764

def create_access_policy(params = {}, options = {})
  req = build_request(:create_access_policy, params)
  req.send_request(options)
end

#create_collection(params = {}) ⇒ Types::CreateCollectionResponse

Creates a new OpenSearch Serverless collection. For more information, see [Creating and managing Amazon OpenSearch Serverless collections].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-manage.html

Examples:

Request syntax with placeholder values


resp = client.create_collection({
  name: "CollectionName", # required
  type: "SEARCH", # accepts SEARCH, TIMESERIES, VECTORSEARCH
  description: "CreateCollectionRequestDescriptionString",
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
  standby_replicas: "ENABLED", # accepts ENABLED, DISABLED
  vector_options: {
    serverless_vector_acceleration: "ENABLED", # required, accepts ENABLED, DISABLED, ALLOWED
  },
  client_token: "ClientToken",
})

Response structure


resp.create_collection_detail.id #=> String
resp.create_collection_detail.name #=> String
resp.create_collection_detail.status #=> String, one of "CREATING", "DELETING", "ACTIVE", "FAILED"
resp.create_collection_detail.type #=> String, one of "SEARCH", "TIMESERIES", "VECTORSEARCH"
resp.create_collection_detail.description #=> String
resp.create_collection_detail.arn #=> String
resp.create_collection_detail.kms_key_arn #=> String
resp.create_collection_detail.standby_replicas #=> String, one of "ENABLED", "DISABLED"
resp.create_collection_detail.vector_options.serverless_vector_acceleration #=> String, one of "ENABLED", "DISABLED", "ALLOWED"
resp.create_collection_detail.created_date #=> Integer
resp.create_collection_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :name (required, String)

    Name of the collection.

  • :type (String)

    The type of collection.

  • :description (String)

    Description of the collection.

  • :tags (Array<Types::Tag>)

    An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Serverless collection.

  • :standby_replicas (String)

    Indicates whether standby replicas should be used for a collection.

  • :vector_options (Types::VectorOptions)

    Configuration options for vector search capabilities in the collection.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



845
846
847
848
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 845

def create_collection(params = {}, options = {})
  req = build_request(:create_collection, params)
  req.send_request(options)
end

#create_index(params = {}) ⇒ Struct

Creates an index within an OpenSearch Serverless collection. Unlike other OpenSearch indexes, indexes created by this API are automatically configured to conduct automatic semantic enrichment ingestion and search. For more information, see [About automatic semantic enrichment] in the *OpenSearch User Guide*.

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-manage.html#serverless-semantic-enrichment

Examples:

Request syntax with placeholder values


resp = client.create_index({
  id: "CollectionId", # required
  index_name: "IndexName", # required
  index_schema: {
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :id (required, String)

    The unique identifier of the collection in which to create the index.

  • :index_name (required, String)

    The name of the index to create. Index names must be lowercase and can’t begin with underscores (_) or hyphens (-).

  • :index_schema (Hash, Array, String, Numeric, Boolean)

    The JSON schema definition for the index, including field mappings and settings.

    Document type used to carry open content (Hash,Array,String,Numeric,Boolean). A document type value is serialized using the same format as its surroundings and requires no additional encoding or escaping.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



891
892
893
894
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 891

def create_index(params = {}, options = {})
  req = build_request(:create_index, params)
  req.send_request(options)
end

#create_lifecycle_policy(params = {}) ⇒ Types::CreateLifecyclePolicyResponse

Creates a lifecyle policy to be applied to OpenSearch Serverless indexes. Lifecycle policies define the number of days or hours to retain the data on an OpenSearch Serverless index. For more information, see [Creating data lifecycle policies].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-lifecycle.html#serverless-lifecycle-create

Examples:

Request syntax with placeholder values


resp = client.create_lifecycle_policy({
  type: "retention", # required, accepts retention
  name: "PolicyName", # required
  description: "PolicyDescription",
  policy: "PolicyDocument", # required
  client_token: "ClientToken",
})

Response structure


resp.lifecycle_policy_detail.type #=> String, one of "retention"
resp.lifecycle_policy_detail.name #=> String
resp.lifecycle_policy_detail.policy_version #=> String
resp.lifecycle_policy_detail.description #=> String
resp.lifecycle_policy_detail.created_date #=> Integer
resp.lifecycle_policy_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of lifecycle policy.

  • :name (required, String)

    The name of the lifecycle policy.

  • :description (String)

    A description of the lifecycle policy.

  • :policy (required, String)

    The JSON policy document to use as the content for the lifecycle policy.

  • :client_token (String)

    A unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



952
953
954
955
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 952

def create_lifecycle_policy(params = {}, options = {})
  req = build_request(:create_lifecycle_policy, params)
  req.send_request(options)
end

#create_security_config(params = {}) ⇒ Types::CreateSecurityConfigResponse

Specifies a security configuration for OpenSearch Serverless. For more information, see [SAML authentication for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-saml.html

Examples:

Request syntax with placeholder values


resp = client.create_security_config({
  type: "saml", # required, accepts saml, iamidentitycenter, iamfederation
  name: "ConfigName", # required
  description: "ConfigDescription",
  saml_options: {
    metadata: "samlMetadata", # required
    user_attribute: "samlUserAttribute",
    group_attribute: "samlGroupAttribute",
    open_search_serverless_entity_id: "openSearchServerlessEntityId",
    session_timeout: 1,
  },
  iam_identity_center_options: {
    instance_arn: "IamIdentityCenterInstanceArn", # required
    user_attribute: "UserId", # accepts UserId, UserName, Email
    group_attribute: "GroupId", # accepts GroupId, GroupName
  },
  iam_federation_options: {
    group_attribute: "iamFederationGroupAttribute",
    user_attribute: "iamFederationUserAttribute",
  },
  client_token: "ClientToken",
})

Response structure


resp.security_config_detail.id #=> String
resp.security_config_detail.type #=> String, one of "saml", "iamidentitycenter", "iamfederation"
resp.security_config_detail.config_version #=> String
resp.security_config_detail.description #=> String
resp.security_config_detail.saml_options. #=> String
resp.security_config_detail.saml_options.user_attribute #=> String
resp.security_config_detail.saml_options.group_attribute #=> String
resp.security_config_detail.saml_options.open_search_serverless_entity_id #=> String
resp.security_config_detail.saml_options.session_timeout #=> Integer
resp.security_config_detail.iam_identity_center_options.instance_arn #=> String
resp.security_config_detail.iam_identity_center_options.application_arn #=> String
resp.security_config_detail.iam_identity_center_options.application_name #=> String
resp.security_config_detail.iam_identity_center_options.application_description #=> String
resp.security_config_detail.iam_identity_center_options.user_attribute #=> String, one of "UserId", "UserName", "Email"
resp.security_config_detail.iam_identity_center_options.group_attribute #=> String, one of "GroupId", "GroupName"
resp.security_config_detail.iam_federation_options.group_attribute #=> String
resp.security_config_detail.iam_federation_options.user_attribute #=> String
resp.security_config_detail.created_date #=> Integer
resp.security_config_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of security configuration.

  • :name (required, String)

    The name of the security configuration.

  • :description (String)

    A description of the security configuration.

  • :saml_options (Types::SamlConfigOptions)

    Describes SAML options in in the form of a key-value map. This field is required if you specify ‘SAML` for the `type` parameter.

  • :iam_identity_center_options (Types::CreateIamIdentityCenterConfigOptions)

    Describes IAM Identity Center options in the form of a key-value map. This field is required if you specify iamidentitycenter for the type parameter.

  • :iam_federation_options (Types::IamFederationConfigOptions)

    Describes IAM federation options in the form of a key-value map. This field is required if you specify ‘iamFederation` for the `type` parameter.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



1050
1051
1052
1053
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1050

def create_security_config(params = {}, options = {})
  req = build_request(:create_security_config, params)
  req.send_request(options)
end

#create_security_policy(params = {}) ⇒ Types::CreateSecurityPolicyResponse

Creates a security policy to be used by one or more OpenSearch Serverless collections. Security policies provide access to a collection and its OpenSearch Dashboards endpoint from public networks or specific VPC endpoints. They also allow you to secure a collection with a KMS encryption key. For more information, see [Network access for Amazon OpenSearch Serverless] and [Encryption at rest for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-network.html [2]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-encryption.html

Examples:

Request syntax with placeholder values


resp = client.create_security_policy({
  type: "encryption", # required, accepts encryption, network
  name: "PolicyName", # required
  description: "PolicyDescription",
  policy: "PolicyDocument", # required
  client_token: "ClientToken",
})

Response structure


resp.security_policy_detail.type #=> String, one of "encryption", "network"
resp.security_policy_detail.name #=> String
resp.security_policy_detail.policy_version #=> String
resp.security_policy_detail.description #=> String
resp.security_policy_detail.created_date #=> Integer
resp.security_policy_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of security policy.

  • :name (required, String)

    The name of the policy.

  • :description (String)

    A description of the policy. Typically used to store information about the permissions defined in the policy.

  • :policy (required, String)

    The JSON policy document to use as the content for the new policy.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



1115
1116
1117
1118
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1115

def create_security_policy(params = {}, options = {})
  req = build_request(:create_security_policy, params)
  req.send_request(options)
end

#create_vpc_endpoint(params = {}) ⇒ Types::CreateVpcEndpointResponse

Creates an OpenSearch Serverless-managed interface VPC endpoint. For more information, see [Access Amazon OpenSearch Serverless using an interface endpoint].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-vpc.html

Examples:

Request syntax with placeholder values


resp = client.create_vpc_endpoint({
  name: "VpcEndpointName", # required
  vpc_id: "VpcId", # required
  subnet_ids: ["SubnetId"], # required
  security_group_ids: ["SecurityGroupId"],
  client_token: "ClientToken",
})

Response structure


resp.create_vpc_endpoint_detail.id #=> String
resp.create_vpc_endpoint_detail.name #=> String
resp.create_vpc_endpoint_detail.status #=> String, one of "PENDING", "DELETING", "ACTIVE", "FAILED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :name (required, String)

    The name of the interface endpoint.

  • :vpc_id (required, String)

    The ID of the VPC from which you’ll access OpenSearch Serverless.

  • :subnet_ids (required, Array<String>)

    The ID of one or more subnets from which you’ll access OpenSearch Serverless.

  • :security_group_ids (Array<String>)

    The unique identifiers of the security groups that define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



1174
1175
1176
1177
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1174

def create_vpc_endpoint(params = {}, options = {})
  req = build_request(:create_vpc_endpoint, params)
  req.send_request(options)
end

#delete_access_policy(params = {}) ⇒ Struct

Deletes an OpenSearch Serverless access policy. For more information, see [Data access control for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-data-access.html

Examples:

Request syntax with placeholder values


resp = client.delete_access_policy({
  type: "data", # required, accepts data
  name: "PolicyName", # required
  client_token: "ClientToken",
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of policy.

  • :name (required, String)

    The name of the policy to delete.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1213
1214
1215
1216
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1213

def delete_access_policy(params = {}, options = {})
  req = build_request(:delete_access_policy, params)
  req.send_request(options)
end

#delete_collection(params = {}) ⇒ Types::DeleteCollectionResponse

Deletes an OpenSearch Serverless collection. For more information, see [Creating and managing Amazon OpenSearch Serverless collections].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-manage.html

Examples:

Request syntax with placeholder values


resp = client.delete_collection({
  id: "CollectionId", # required
  client_token: "ClientToken",
})

Response structure


resp.delete_collection_detail.id #=> String
resp.delete_collection_detail.name #=> String
resp.delete_collection_detail.status #=> String, one of "CREATING", "DELETING", "ACTIVE", "FAILED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

Returns:

See Also:



1262
1263
1264
1265
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1262

def delete_collection(params = {}, options = {})
  req = build_request(:delete_collection, params)
  req.send_request(options)
end

#delete_index(params = {}) ⇒ Struct

Deletes an index from an OpenSearch Serverless collection. Be aware that the index might be configured to conduct automatic semantic enrichment ingestion and search. For more information, see [About automatic semantic enrichment].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-manage.html#serverless-semantic-enrichment

Examples:

Request syntax with placeholder values


resp = client.delete_index({
  id: "CollectionId", # required
  index_name: "IndexName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :id (required, String)

    The unique identifier of the collection containing the index to delete.

  • :index_name (required, String)

    The name of the index to delete.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1296
1297
1298
1299
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1296

def delete_index(params = {}, options = {})
  req = build_request(:delete_index, params)
  req.send_request(options)
end

#delete_lifecycle_policy(params = {}) ⇒ Struct

Deletes an OpenSearch Serverless lifecycle policy. For more information, see [Deleting data lifecycle policies].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-lifecycle.html#serverless-lifecycle-delete

Examples:

Request syntax with placeholder values


resp = client.delete_lifecycle_policy({
  type: "retention", # required, accepts retention
  name: "PolicyName", # required
  client_token: "ClientToken",
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of lifecycle policy.

  • :name (required, String)

    The name of the policy to delete.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1335
1336
1337
1338
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1335

def delete_lifecycle_policy(params = {}, options = {})
  req = build_request(:delete_lifecycle_policy, params)
  req.send_request(options)
end

#delete_security_config(params = {}) ⇒ Struct

Deletes a security configuration for OpenSearch Serverless. For more information, see [SAML authentication for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-saml.html

Examples:

Request syntax with placeholder values


resp = client.delete_security_config({
  id: "SecurityConfigId", # required
  client_token: "ClientToken",
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :id (required, String)

    The security configuration identifier. For SAML the ID will be ‘saml/<accountId>/<idpProviderName>`. For example, `saml/123456789123/OKTADev`.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1373
1374
1375
1376
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1373

def delete_security_config(params = {}, options = {})
  req = build_request(:delete_security_config, params)
  req.send_request(options)
end

#delete_security_policy(params = {}) ⇒ Struct

Deletes an OpenSearch Serverless security policy.

Examples:

Request syntax with placeholder values


resp = client.delete_security_policy({
  type: "encryption", # required, accepts encryption, network
  name: "PolicyName", # required
  client_token: "ClientToken",
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of policy.

  • :name (required, String)

    The name of the policy to delete.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1407
1408
1409
1410
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1407

def delete_security_policy(params = {}, options = {})
  req = build_request(:delete_security_policy, params)
  req.send_request(options)
end

#delete_vpc_endpoint(params = {}) ⇒ Types::DeleteVpcEndpointResponse

Deletes an OpenSearch Serverless-managed interface endpoint. For more information, see [Access Amazon OpenSearch Serverless using an interface endpoint].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-vpc.html

Examples:

Request syntax with placeholder values


resp = client.delete_vpc_endpoint({
  id: "VpcEndpointId", # required
  client_token: "ClientToken",
})

Response structure


resp.delete_vpc_endpoint_detail.id #=> String
resp.delete_vpc_endpoint_detail.name #=> String
resp.delete_vpc_endpoint_detail.status #=> String, one of "PENDING", "DELETING", "ACTIVE", "FAILED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :id (required, String)

    The VPC endpoint identifier.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



1451
1452
1453
1454
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1451

def delete_vpc_endpoint(params = {}, options = {})
  req = build_request(:delete_vpc_endpoint, params)
  req.send_request(options)
end

#get_access_policy(params = {}) ⇒ Types::GetAccessPolicyResponse

Returns an OpenSearch Serverless access policy. For more information, see [Data access control for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-data-access.html

Examples:

Request syntax with placeholder values


resp = client.get_access_policy({
  type: "data", # required, accepts data
  name: "PolicyName", # required
})

Response structure


resp.access_policy_detail.type #=> String, one of "data"
resp.access_policy_detail.name #=> String
resp.access_policy_detail.policy_version #=> String
resp.access_policy_detail.description #=> String
resp.access_policy_detail.created_date #=> Integer
resp.access_policy_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    Tye type of policy. Currently, the only supported value is ‘data`.

  • :name (required, String)

    The name of the access policy.

Returns:

See Also:



1493
1494
1495
1496
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1493

def get_access_policy(params = {}, options = {})
  req = build_request(:get_access_policy, params)
  req.send_request(options)
end

#get_account_settings(params = {}) ⇒ Types::GetAccountSettingsResponse

Returns account-level settings related to OpenSearch Serverless.

Examples:

Response structure


resp..capacity_limits.max_indexing_capacity_in_ocu #=> Integer
resp..capacity_limits.max_search_capacity_in_ocu #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Returns:

See Also:



1513
1514
1515
1516
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1513

def (params = {}, options = {})
  req = build_request(:get_account_settings, params)
  req.send_request(options)
end

#get_index(params = {}) ⇒ Types::GetIndexResponse

Retrieves information about an index in an OpenSearch Serverless collection, including its schema definition. The index might be configured to conduct automatic semantic enrichment ingestion and search. For more information, see [About automatic semantic enrichment].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-manage.html#serverless-semantic-enrichment

Examples:

Request syntax with placeholder values


resp = client.get_index({
  id: "CollectionId", # required
  index_name: "IndexName", # required
})

Response structure


Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :id (required, String)

    The unique identifier of the collection containing the index.

  • :index_name (required, String)

    The name of the index to retrieve information about.

Returns:

See Also:



1553
1554
1555
1556
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1553

def get_index(params = {}, options = {})
  req = build_request(:get_index, params)
  req.send_request(options)
end

#get_policies_stats(params = {}) ⇒ Types::GetPoliciesStatsResponse

Returns statistical information about your OpenSearch Serverless access policies, security configurations, and security policies.

Examples:

Response structure


resp.access_policy_stats.data_policy_count #=> Integer
resp.security_policy_stats.encryption_policy_count #=> Integer
resp.security_policy_stats.network_policy_count #=> Integer
resp.security_config_stats.saml_config_count #=> Integer
resp.lifecycle_policy_stats.retention_policy_count #=> Integer
resp.total_policy_count #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Returns:

See Also:



1582
1583
1584
1585
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1582

def get_policies_stats(params = {}, options = {})
  req = build_request(:get_policies_stats, params)
  req.send_request(options)
end

#get_security_config(params = {}) ⇒ Types::GetSecurityConfigResponse

Returns information about an OpenSearch Serverless security configuration. For more information, see [SAML authentication for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-saml.html

Examples:

Request syntax with placeholder values


resp = client.get_security_config({
  id: "SecurityConfigId", # required
})

Response structure


resp.security_config_detail.id #=> String
resp.security_config_detail.type #=> String, one of "saml", "iamidentitycenter", "iamfederation"
resp.security_config_detail.config_version #=> String
resp.security_config_detail.description #=> String
resp.security_config_detail.saml_options. #=> String
resp.security_config_detail.saml_options.user_attribute #=> String
resp.security_config_detail.saml_options.group_attribute #=> String
resp.security_config_detail.saml_options.open_search_serverless_entity_id #=> String
resp.security_config_detail.saml_options.session_timeout #=> Integer
resp.security_config_detail.iam_identity_center_options.instance_arn #=> String
resp.security_config_detail.iam_identity_center_options.application_arn #=> String
resp.security_config_detail.iam_identity_center_options.application_name #=> String
resp.security_config_detail.iam_identity_center_options.application_description #=> String
resp.security_config_detail.iam_identity_center_options.user_attribute #=> String, one of "UserId", "UserName", "Email"
resp.security_config_detail.iam_identity_center_options.group_attribute #=> String, one of "GroupId", "GroupName"
resp.security_config_detail.iam_federation_options.group_attribute #=> String
resp.security_config_detail.iam_federation_options.user_attribute #=> String
resp.security_config_detail.created_date #=> Integer
resp.security_config_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :id (required, String)

    The unique identifier of the security configuration.

Returns:

See Also:



1634
1635
1636
1637
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1634

def get_security_config(params = {}, options = {})
  req = build_request(:get_security_config, params)
  req.send_request(options)
end

#get_security_policy(params = {}) ⇒ Types::GetSecurityPolicyResponse

Returns information about a configured OpenSearch Serverless security policy. For more information, see [Network access for Amazon OpenSearch Serverless] and [Encryption at rest for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-network.html [2]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-encryption.html

Examples:

Request syntax with placeholder values


resp = client.get_security_policy({
  type: "encryption", # required, accepts encryption, network
  name: "PolicyName", # required
})

Response structure


resp.security_policy_detail.type #=> String, one of "encryption", "network"
resp.security_policy_detail.name #=> String
resp.security_policy_detail.policy_version #=> String
resp.security_policy_detail.description #=> String
resp.security_policy_detail.created_date #=> Integer
resp.security_policy_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of security policy.

  • :name (required, String)

    The name of the security policy.

Returns:

See Also:



1679
1680
1681
1682
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1679

def get_security_policy(params = {}, options = {})
  req = build_request(:get_security_policy, params)
  req.send_request(options)
end

#list_access_policies(params = {}) ⇒ Types::ListAccessPoliciesResponse

Returns information about a list of OpenSearch Serverless access policies.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_access_policies({
  type: "data", # required, accepts data
  resource: ["Resource"],
  next_token: "String",
  max_results: 1,
})

Response structure


resp.access_policy_summaries #=> Array
resp.access_policy_summaries[0].type #=> String, one of "data"
resp.access_policy_summaries[0].name #=> String
resp.access_policy_summaries[0].policy_version #=> String
resp.access_policy_summaries[0].description #=> String
resp.access_policy_summaries[0].created_date #=> Integer
resp.access_policy_summaries[0].last_modified_date #=> Integer
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of access policy.

  • :resource (Array<String>)

    Resource filters (can be collections or indexes) that policies can apply to.

  • :next_token (String)

    If your initial ‘ListAccessPolicies` operation returns a `nextToken`, you can include the returned `nextToken` in subsequent `ListAccessPolicies` operations, which returns results in the next page.

  • :max_results (Integer)

    An optional parameter that specifies the maximum number of results to return. You can use ‘nextToken` to get the next page of results. The default is 20.

Returns:

See Also:



1736
1737
1738
1739
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1736

def list_access_policies(params = {}, options = {})
  req = build_request(:list_access_policies, params)
  req.send_request(options)
end

#list_collections(params = {}) ⇒ Types::ListCollectionsResponse

Lists all OpenSearch Serverless collections. For more information, see [Creating and managing Amazon OpenSearch Serverless collections].

<note markdown=“1”> Make sure to include an empty request body {} if you don’t include any collection filters in the request.

</note>

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-manage.html

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_collections({
  collection_filters: {
    name: "CollectionName",
    status: "CREATING", # accepts CREATING, DELETING, ACTIVE, FAILED
  },
  next_token: "String",
  max_results: 1,
})

Response structure


resp.collection_summaries #=> Array
resp.collection_summaries[0].id #=> String
resp.collection_summaries[0].name #=> String
resp.collection_summaries[0].status #=> String, one of "CREATING", "DELETING", "ACTIVE", "FAILED"
resp.collection_summaries[0].arn #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :collection_filters (Types::CollectionFilters)

    A list of filter names and values that you can use for requests.

  • :next_token (String)

    If your initial ‘ListCollections` operation returns a `nextToken`, you can include the returned `nextToken` in subsequent `ListCollections` operations, which returns results in the next page.

  • :max_results (Integer)

    The maximum number of results to return. Default is 20. You can use ‘nextToken` to get the next page of results.

Returns:

See Also:



1796
1797
1798
1799
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1796

def list_collections(params = {}, options = {})
  req = build_request(:list_collections, params)
  req.send_request(options)
end

#list_lifecycle_policies(params = {}) ⇒ Types::ListLifecyclePoliciesResponse

Returns a list of OpenSearch Serverless lifecycle policies. For more information, see [Viewing data lifecycle policies].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-lifecycle.html#serverless-lifecycle-list

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_lifecycle_policies({
  type: "retention", # required, accepts retention
  resources: ["LifecycleResource"],
  next_token: "String",
  max_results: 1,
})

Response structure


resp.lifecycle_policy_summaries #=> Array
resp.lifecycle_policy_summaries[0].type #=> String, one of "retention"
resp.lifecycle_policy_summaries[0].name #=> String
resp.lifecycle_policy_summaries[0].policy_version #=> String
resp.lifecycle_policy_summaries[0].description #=> String
resp.lifecycle_policy_summaries[0].created_date #=> Integer
resp.lifecycle_policy_summaries[0].last_modified_date #=> Integer
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of lifecycle policy.

  • :resources (Array<String>)

    Resource filters that policies can apply to. Currently, the only supported resource type is ‘index`.

  • :next_token (String)

    If your initial ‘ListLifecyclePolicies` operation returns a `nextToken`, you can include the returned `nextToken` in subsequent `ListLifecyclePolicies` operations, which returns results in the next page.

  • :max_results (Integer)

    An optional parameter that specifies the maximum number of results to return. You can use use ‘nextToken` to get the next page of results. The default is 10.

Returns:

See Also:



1857
1858
1859
1860
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1857

def list_lifecycle_policies(params = {}, options = {})
  req = build_request(:list_lifecycle_policies, params)
  req.send_request(options)
end

#list_security_configs(params = {}) ⇒ Types::ListSecurityConfigsResponse

Returns information about configured OpenSearch Serverless security configurations. For more information, see [SAML authentication for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-saml.html

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_security_configs({
  type: "saml", # required, accepts saml, iamidentitycenter, iamfederation
  next_token: "String",
  max_results: 1,
})

Response structure


resp.security_config_summaries #=> Array
resp.security_config_summaries[0].id #=> String
resp.security_config_summaries[0].type #=> String, one of "saml", "iamidentitycenter", "iamfederation"
resp.security_config_summaries[0].config_version #=> String
resp.security_config_summaries[0].description #=> String
resp.security_config_summaries[0].created_date #=> Integer
resp.security_config_summaries[0].last_modified_date #=> Integer
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of security configuration.

  • :next_token (String)

    If your initial ‘ListSecurityConfigs` operation returns a `nextToken`, you can include the returned `nextToken` in subsequent `ListSecurityConfigs` operations, which returns results in the next page.

  • :max_results (Integer)

    An optional parameter that specifies the maximum number of results to return. You can use ‘nextToken` to get the next page of results. The default is 20.

Returns:

See Also:



1914
1915
1916
1917
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1914

def list_security_configs(params = {}, options = {})
  req = build_request(:list_security_configs, params)
  req.send_request(options)
end

#list_security_policies(params = {}) ⇒ Types::ListSecurityPoliciesResponse

Returns information about configured OpenSearch Serverless security policies.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_security_policies({
  type: "encryption", # required, accepts encryption, network
  resource: ["Resource"],
  next_token: "String",
  max_results: 1,
})

Response structure


resp.security_policy_summaries #=> Array
resp.security_policy_summaries[0].type #=> String, one of "encryption", "network"
resp.security_policy_summaries[0].name #=> String
resp.security_policy_summaries[0].policy_version #=> String
resp.security_policy_summaries[0].description #=> String
resp.security_policy_summaries[0].created_date #=> Integer
resp.security_policy_summaries[0].last_modified_date #=> Integer
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of policy.

  • :resource (Array<String>)

    Resource filters (can be collection or indexes) that policies can apply to.

  • :next_token (String)

    If your initial ‘ListSecurityPolicies` operation returns a `nextToken`, you can include the returned `nextToken` in subsequent `ListSecurityPolicies` operations, which returns results in the next page.

  • :max_results (Integer)

    An optional parameter that specifies the maximum number of results to return. You can use ‘nextToken` to get the next page of results. The default is 20.

Returns:

See Also:



1971
1972
1973
1974
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 1971

def list_security_policies(params = {}, options = {})
  req = build_request(:list_security_policies, params)
  req.send_request(options)
end

#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse

Returns the tags for an OpenSearch Serverless resource. For more information, see [Tagging Amazon OpenSearch Serverless collections].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/tag-collection.html

Examples:

Request syntax with placeholder values


resp = client.list_tags_for_resource({
  resource_arn: "Arn", # required
})

Response structure


resp.tags #=> Array
resp.tags[0].key #=> String
resp.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the resource. The resource must be active (not in the ‘DELETING` state), and must be owned by the account ID included in the request.

Returns:

See Also:



2009
2010
2011
2012
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2009

def list_tags_for_resource(params = {}, options = {})
  req = build_request(:list_tags_for_resource, params)
  req.send_request(options)
end

#list_vpc_endpoints(params = {}) ⇒ Types::ListVpcEndpointsResponse

Returns the OpenSearch Serverless-managed interface VPC endpoints associated with the current account. For more information, see [Access Amazon OpenSearch Serverless using an interface endpoint].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-vpc.html

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_vpc_endpoints({
  vpc_endpoint_filters: {
    status: "PENDING", # accepts PENDING, DELETING, ACTIVE, FAILED
  },
  next_token: "String",
  max_results: 1,
})

Response structure


resp.vpc_endpoint_summaries #=> Array
resp.vpc_endpoint_summaries[0].id #=> String
resp.vpc_endpoint_summaries[0].name #=> String
resp.vpc_endpoint_summaries[0].status #=> String, one of "PENDING", "DELETING", "ACTIVE", "FAILED"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :vpc_endpoint_filters (Types::VpcEndpointFilters)

    Filter the results according to the current status of the VPC endpoint. Possible statuses are ‘CREATING`, `DELETING`, `UPDATING`, `ACTIVE`, and `FAILED`.

  • :next_token (String)

    If your initial ‘ListVpcEndpoints` operation returns a `nextToken`, you can include the returned `nextToken` in subsequent `ListVpcEndpoints` operations, which returns results in the next page.

  • :max_results (Integer)

    An optional parameter that specifies the maximum number of results to return. You can use ‘nextToken` to get the next page of results. The default is 20.

Returns:

See Also:



2066
2067
2068
2069
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2066

def list_vpc_endpoints(params = {}, options = {})
  req = build_request(:list_vpc_endpoints, params)
  req.send_request(options)
end

#tag_resource(params = {}) ⇒ Struct

Associates tags with an OpenSearch Serverless resource. For more information, see [Tagging Amazon OpenSearch Serverless collections].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/tag-collection.html

Examples:

Request syntax with placeholder values


resp = client.tag_resource({
  resource_arn: "Arn", # required
  tags: [ # required
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the resource. The resource must be active (not in the ‘DELETING` state), and must be owned by the account ID included in the request.

  • :tags (required, Array<Types::Tag>)

    A list of tags (key-value pairs) to add to the resource. All tag keys in the request must be unique.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2106
2107
2108
2109
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2106

def tag_resource(params = {}, options = {})
  req = build_request(:tag_resource, params)
  req.send_request(options)
end

#untag_resource(params = {}) ⇒ Struct

Removes a tag or set of tags from an OpenSearch Serverless resource. For more information, see [Tagging Amazon OpenSearch Serverless collections].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/tag-collection.html

Examples:

Request syntax with placeholder values


resp = client.untag_resource({
  resource_arn: "Arn", # required
  tag_keys: ["TagKey"], # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the resource to remove tags from. The resource must be active (not in the ‘DELETING` state), and must be owned by the account ID included in the request.

  • :tag_keys (required, Array<String>)

    The tag or set of tags to remove from the resource. All tag keys in the request must be unique.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2141
2142
2143
2144
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2141

def untag_resource(params = {}, options = {})
  req = build_request(:untag_resource, params)
  req.send_request(options)
end

#update_access_policy(params = {}) ⇒ Types::UpdateAccessPolicyResponse

Updates an OpenSearch Serverless access policy. For more information, see [Data access control for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-data-access.html

Examples:

Request syntax with placeholder values


resp = client.update_access_policy({
  type: "data", # required, accepts data
  name: "PolicyName", # required
  policy_version: "PolicyVersion", # required
  description: "PolicyDescription",
  policy: "PolicyDocument",
  client_token: "ClientToken",
})

Response structure


resp.access_policy_detail.type #=> String, one of "data"
resp.access_policy_detail.name #=> String
resp.access_policy_detail.policy_version #=> String
resp.access_policy_detail.description #=> String
resp.access_policy_detail.created_date #=> Integer
resp.access_policy_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of policy.

  • :name (required, String)

    The name of the policy.

  • :policy_version (required, String)

    The version of the policy being updated.

  • :description (String)

    A description of the policy. Typically used to store information about the permissions defined in the policy.

  • :policy (String)

    The JSON policy document to use as the content for the policy.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



2204
2205
2206
2207
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2204

def update_access_policy(params = {}, options = {})
  req = build_request(:update_access_policy, params)
  req.send_request(options)
end

#update_account_settings(params = {}) ⇒ Types::UpdateAccountSettingsResponse

Update the OpenSearch Serverless settings for the current Amazon Web Services account. For more information, see [Managing capacity limits for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-scaling.html

Examples:

Request syntax with placeholder values


resp = client.({
  capacity_limits: {
    max_indexing_capacity_in_ocu: 1,
    max_search_capacity_in_ocu: 1,
  },
})

Response structure


resp..capacity_limits.max_indexing_capacity_in_ocu #=> Integer
resp..capacity_limits.max_search_capacity_in_ocu #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

Returns:

See Also:



2249
2250
2251
2252
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2249

def (params = {}, options = {})
  req = build_request(:update_account_settings, params)
  req.send_request(options)
end

#update_collection(params = {}) ⇒ Types::UpdateCollectionResponse

Updates an OpenSearch Serverless collection.

Examples:

Request syntax with placeholder values


resp = client.update_collection({
  id: "CollectionId", # required
  description: "UpdateCollectionRequestDescriptionString",
  client_token: "ClientToken",
})

Response structure


resp.update_collection_detail.id #=> String
resp.update_collection_detail.name #=> String
resp.update_collection_detail.status #=> String, one of "CREATING", "DELETING", "ACTIVE", "FAILED"
resp.update_collection_detail.type #=> String, one of "SEARCH", "TIMESERIES", "VECTORSEARCH"
resp.update_collection_detail.description #=> String
resp.update_collection_detail.arn #=> String
resp.update_collection_detail.created_date #=> Integer
resp.update_collection_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :id (required, String)

    The unique identifier of the collection.

  • :description (String)

    A description of the collection.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



2296
2297
2298
2299
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2296

def update_collection(params = {}, options = {})
  req = build_request(:update_collection, params)
  req.send_request(options)
end

#update_index(params = {}) ⇒ Struct

Updates an existing index in an OpenSearch Serverless collection. This operation allows you to modify the index schema, including adding new fields or changing field mappings. You can also enable automatic semantic enrichment ingestion and search. For more information, see [About automatic semantic enrichment].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-manage.html#serverless-semantic-enrichment

Examples:

Request syntax with placeholder values


resp = client.update_index({
  id: "CollectionId", # required
  index_name: "IndexName", # required
  index_schema: {
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :id (required, String)

    The unique identifier of the collection containing the index to update.

  • :index_name (required, String)

    The name of the index to update.

  • :index_schema (Hash, Array, String, Numeric, Boolean)

    The updated JSON schema definition for the index, including field mappings and settings.

    Document type used to carry open content (Hash,Array,String,Numeric,Boolean). A document type value is serialized using the same format as its surroundings and requires no additional encoding or escaping.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2342
2343
2344
2345
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2342

def update_index(params = {}, options = {})
  req = build_request(:update_index, params)
  req.send_request(options)
end

#update_lifecycle_policy(params = {}) ⇒ Types::UpdateLifecyclePolicyResponse

Updates an OpenSearch Serverless access policy. For more information, see [Updating data lifecycle policies].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-lifecycle.html#serverless-lifecycle-update

Examples:

Request syntax with placeholder values


resp = client.update_lifecycle_policy({
  type: "retention", # required, accepts retention
  name: "PolicyName", # required
  policy_version: "PolicyVersion", # required
  description: "PolicyDescription",
  policy: "PolicyDocument",
  client_token: "ClientToken",
})

Response structure


resp.lifecycle_policy_detail.type #=> String, one of "retention"
resp.lifecycle_policy_detail.name #=> String
resp.lifecycle_policy_detail.policy_version #=> String
resp.lifecycle_policy_detail.description #=> String
resp.lifecycle_policy_detail.created_date #=> Integer
resp.lifecycle_policy_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of lifecycle policy.

  • :name (required, String)

    The name of the policy.

  • :policy_version (required, String)

    The version of the policy being updated.

  • :description (String)

    A description of the lifecycle policy.

  • :policy (String)

    The JSON policy document to use as the content for the lifecycle policy.

  • :client_token (String)

    A unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



2405
2406
2407
2408
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2405

def update_lifecycle_policy(params = {}, options = {})
  req = build_request(:update_lifecycle_policy, params)
  req.send_request(options)
end

#update_security_config(params = {}) ⇒ Types::UpdateSecurityConfigResponse

Updates a security configuration for OpenSearch Serverless. For more information, see [SAML authentication for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-saml.html

Examples:

Request syntax with placeholder values


resp = client.update_security_config({
  id: "SecurityConfigId", # required
  config_version: "PolicyVersion", # required
  description: "ConfigDescription",
  saml_options: {
    metadata: "samlMetadata", # required
    user_attribute: "samlUserAttribute",
    group_attribute: "samlGroupAttribute",
    open_search_serverless_entity_id: "openSearchServerlessEntityId",
    session_timeout: 1,
  },
  iam_identity_center_options_updates: {
    user_attribute: "UserId", # accepts UserId, UserName, Email
    group_attribute: "GroupId", # accepts GroupId, GroupName
  },
  iam_federation_options: {
    group_attribute: "iamFederationGroupAttribute",
    user_attribute: "iamFederationUserAttribute",
  },
  client_token: "ClientToken",
})

Response structure


resp.security_config_detail.id #=> String
resp.security_config_detail.type #=> String, one of "saml", "iamidentitycenter", "iamfederation"
resp.security_config_detail.config_version #=> String
resp.security_config_detail.description #=> String
resp.security_config_detail.saml_options. #=> String
resp.security_config_detail.saml_options.user_attribute #=> String
resp.security_config_detail.saml_options.group_attribute #=> String
resp.security_config_detail.saml_options.open_search_serverless_entity_id #=> String
resp.security_config_detail.saml_options.session_timeout #=> Integer
resp.security_config_detail.iam_identity_center_options.instance_arn #=> String
resp.security_config_detail.iam_identity_center_options.application_arn #=> String
resp.security_config_detail.iam_identity_center_options.application_name #=> String
resp.security_config_detail.iam_identity_center_options.application_description #=> String
resp.security_config_detail.iam_identity_center_options.user_attribute #=> String, one of "UserId", "UserName", "Email"
resp.security_config_detail.iam_identity_center_options.group_attribute #=> String, one of "GroupId", "GroupName"
resp.security_config_detail.iam_federation_options.group_attribute #=> String
resp.security_config_detail.iam_federation_options.user_attribute #=> String
resp.security_config_detail.created_date #=> Integer
resp.security_config_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :id (required, String)

    The security configuration identifier. For SAML the ID will be ‘saml/<accountId>/<idpProviderName>`. For example, `saml/123456789123/OKTADev`.

  • :config_version (required, String)

    The version of the security configuration to be updated. You can find the most recent version of a security configuration using the ‘GetSecurityPolicy` command.

  • :description (String)

    A description of the security configuration.

  • :saml_options (Types::SamlConfigOptions)

    SAML options in in the form of a key-value map.

  • :iam_identity_center_options_updates (Types::UpdateIamIdentityCenterConfigOptions)

    Describes IAM Identity Center options in the form of a key-value map.

  • :iam_federation_options (Types::IamFederationConfigOptions)

    Describes IAM federation options in the form of a key-value map for updating an existing security configuration. Use this field to modify IAM federation settings for the security configuration.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



2503
2504
2505
2506
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2503

def update_security_config(params = {}, options = {})
  req = build_request(:update_security_config, params)
  req.send_request(options)
end

#update_security_policy(params = {}) ⇒ Types::UpdateSecurityPolicyResponse

Updates an OpenSearch Serverless security policy. For more information, see [Network access for Amazon OpenSearch Serverless] and [Encryption at rest for Amazon OpenSearch Serverless].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-network.html [2]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-encryption.html

Examples:

Request syntax with placeholder values


resp = client.update_security_policy({
  type: "encryption", # required, accepts encryption, network
  name: "PolicyName", # required
  policy_version: "PolicyVersion", # required
  description: "PolicyDescription",
  policy: "PolicyDocument",
  client_token: "ClientToken",
})

Response structure


resp.security_policy_detail.type #=> String, one of "encryption", "network"
resp.security_policy_detail.name #=> String
resp.security_policy_detail.policy_version #=> String
resp.security_policy_detail.description #=> String
resp.security_policy_detail.created_date #=> Integer
resp.security_policy_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :type (required, String)

    The type of access policy.

  • :name (required, String)

    The name of the policy.

  • :policy_version (required, String)

    The version of the policy being updated.

  • :description (String)

    A description of the policy. Typically used to store information about the permissions defined in the policy.

  • :policy (String)

    The JSON policy document to use as the content for the new policy.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



2568
2569
2570
2571
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2568

def update_security_policy(params = {}, options = {})
  req = build_request(:update_security_policy, params)
  req.send_request(options)
end

#update_vpc_endpoint(params = {}) ⇒ Types::UpdateVpcEndpointResponse

Updates an OpenSearch Serverless-managed interface endpoint. For more information, see [Access Amazon OpenSearch Serverless using an interface endpoint].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-vpc.html

Examples:

Request syntax with placeholder values


resp = client.update_vpc_endpoint({
  id: "VpcEndpointId", # required
  add_subnet_ids: ["SubnetId"],
  remove_subnet_ids: ["SubnetId"],
  add_security_group_ids: ["SecurityGroupId"],
  remove_security_group_ids: ["SecurityGroupId"],
  client_token: "ClientToken",
})

Response structure


resp.update_vpc_endpoint_detail.id #=> String
resp.update_vpc_endpoint_detail.name #=> String
resp.update_vpc_endpoint_detail.status #=> String, one of "PENDING", "DELETING", "ACTIVE", "FAILED"
resp.update_vpc_endpoint_detail.subnet_ids #=> Array
resp.update_vpc_endpoint_detail.subnet_ids[0] #=> String
resp.update_vpc_endpoint_detail.security_group_ids #=> Array
resp.update_vpc_endpoint_detail.security_group_ids[0] #=> String
resp.update_vpc_endpoint_detail.last_modified_date #=> Integer

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :id (required, String)

    The unique identifier of the interface endpoint to update.

  • :add_subnet_ids (Array<String>)

    The ID of one or more subnets to add to the endpoint.

  • :remove_subnet_ids (Array<String>)

    The unique identifiers of the subnets to remove from the endpoint.

  • :add_security_group_ids (Array<String>)

    The unique identifiers of the security groups to add to the endpoint. Security groups define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.

  • :remove_security_group_ids (Array<String>)

    The unique identifiers of the security groups to remove from the endpoint.

  • :client_token (String)

    Unique, case-sensitive identifier to ensure idempotency of the request.

    **A suitable default value is auto-generated.** You should normally not need to pass this option.**

Returns:

See Also:



2636
2637
2638
2639
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2636

def update_vpc_endpoint(params = {}, options = {})
  req = build_request(:update_vpc_endpoint, params)
  req.send_request(options)
end

#waiter_namesObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Deprecated.


2665
2666
2667
# File 'lib/aws-sdk-opensearchserverless/client.rb', line 2665

def waiter_names
  []
end