interface AppConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.OpenSearchService.CfnApplication.AppConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsopensearchservice#CfnApplication_AppConfigProperty |
Java | software.amazon.awscdk.services.opensearchservice.CfnApplication.AppConfigProperty |
Python | aws_cdk.aws_opensearchservice.CfnApplication.AppConfigProperty |
TypeScript | aws-cdk-lib » aws_opensearchservice » CfnApplication » AppConfigProperty |
Configuration settings for an OpenSearch application.
For more information, see Using the OpenSearch user interface in Amazon OpenSearch Service .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchservice as opensearchservice } from 'aws-cdk-lib';
const appConfigProperty: opensearchservice.CfnApplication.AppConfigProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The configuration item to set, such as the admin role for the OpenSearch application. |
| value | string | The value assigned to the configuration key, such as an IAM user ARN. |
key
Type:
string
The configuration item to set, such as the admin role for the OpenSearch application.
value
Type:
string
The value assigned to the configuration key, such as an IAM user ARN.

.NET
Go
Java
Python
TypeScript