interface AppConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchService.Mixins.CfnApplicationPropsMixin.AppConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchservice/mixins#CfnApplicationPropsMixin_AppConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.opensearchservice.mixins.CfnApplicationPropsMixin.AppConfigProperty |
Python | aws_cdk.mixins_preview.aws_opensearchservice.mixins.CfnApplicationPropsMixin.AppConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchservice » mixins » CfnApplicationPropsMixin » 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 { mixins as opensearchservice_mixins } from '@aws-cdk/mixins-preview/aws-opensearchservice';
const appConfigProperty: opensearchservice_mixins.CfnApplicationPropsMixin.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
(optional)
The configuration item to set, such as the admin role for the OpenSearch application.
value?
Type:
string
(optional)
The value assigned to the configuration key, such as an IAM user ARN.

.NET
Go
Java
Python
TypeScript