interface AppConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchService.CfnApplicationPropsMixin.AppConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsopensearchservice#CfnApplicationPropsMixin_AppConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.opensearchservice.CfnApplicationPropsMixin.AppConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_opensearchservice.CfnApplicationPropsMixin.AppConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_opensearchservice » 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 { aws_opensearchservice as opensearchservice } from '@aws-cdk/cfn-property-mixins';
const appConfigProperty: opensearchservice.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