Skip to content

Get Security Policy

opensearchserviceserverless_get_security_policy R Documentation

Returns information about a configured OpenSearch Serverless security policy

Description

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.

Usage

opensearchserviceserverless_get_security_policy(type, name)

Arguments

type

[required] The type of security policy.

name

[required] The name of the security policy.

Value

A list with the following syntax:

list(
  securityPolicyDetail = list(
    type = "encryption"|"network",
    name = "string",
    policyVersion = "string",
    description = "string",
    policy = list(),
    createdDate = 123,
    lastModifiedDate = 123
  )
)

Request syntax

svc$get_security_policy(
  type = "encryption"|"network",
  name = "string"
)