Class CfnApplicationPropsMixin.AppConfigProperty
Configuration settings for an OpenSearch application.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchService
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnApplicationPropsMixin.AppConfigProperty : CfnApplicationPropsMixin.IAppConfigProperty
Syntax (vb)
Public Class CfnApplicationPropsMixin.AppConfigProperty Implements CfnApplicationPropsMixin.IAppConfigProperty
Remarks
For more information, see Using the OpenSearch user interface in Amazon OpenSearch Service .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchService;
var appConfigProperty = new AppConfigProperty {
Key = "key",
Value = "value"
};
Synopsis
Constructors
| AppConfigProperty() | Configuration settings for an OpenSearch application. |
Properties
| Key | The configuration item to set, such as the admin role for the OpenSearch application. |
| Value | The value assigned to the configuration key, such as an IAM user ARN. |
Constructors
AppConfigProperty()
Configuration settings for an OpenSearch application.
public AppConfigProperty()
Remarks
For more information, see Using the OpenSearch user interface in Amazon OpenSearch Service .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchService;
var appConfigProperty = new AppConfigProperty {
Key = "key",
Value = "value"
};
Properties
Key
The configuration item to set, such as the admin role for the OpenSearch application.
public string? Key { get; set; }
Property Value
Remarks
Value
The value assigned to the configuration key, such as an IAM user ARN.
public string? Value { get; set; }