interface SecurityPolicyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.OpenSearchServerless.SecurityPolicyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsopensearchserverless#SecurityPolicyReference |
Java | software.amazon.awscdk.services.opensearchserverless.SecurityPolicyReference |
Python | aws_cdk.aws_opensearchserverless.SecurityPolicyReference |
TypeScript | aws-cdk-lib » aws_opensearchserverless » SecurityPolicyReference |
A reference to a SecurityPolicy resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchserverless as opensearchserverless } from 'aws-cdk-lib';
const securityPolicyReference: opensearchserverless.SecurityPolicyReference = {
securityPolicyName: 'securityPolicyName',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string | The Name of the SecurityPolicy resource. |
| type | string | The Type of the SecurityPolicy resource. |
securityPolicyName
Type:
string
The Name of the SecurityPolicy resource.
type
Type:
string
The Type of the SecurityPolicy resource.

.NET
Go
Java
Python
TypeScript