interface JWTOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.OpenSearchService.CfnDomain.JWTOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsopensearchservice#CfnDomain_JWTOptionsProperty |
Java | software.amazon.awscdk.services.opensearchservice.CfnDomain.JWTOptionsProperty |
Python | aws_cdk.aws_opensearchservice.CfnDomain.JWTOptionsProperty |
TypeScript | aws-cdk-lib » aws_opensearchservice » CfnDomain » JWTOptionsProperty |
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 jWTOptionsProperty: opensearchservice.CfnDomain.JWTOptionsProperty = {
enabled: false,
publicKey: 'publicKey',
rolesKey: 'rolesKey',
subjectKey: 'subjectKey',
};
Properties
Name | Type | Description |
---|---|---|
enabled? | boolean | IResolvable | |
public | string | |
roles | string | |
subject | string |
enabled?
Type:
boolean |
IResolvable
(optional)
publicKey?
Type:
string
(optional)
rolesKey?
Type:
string
(optional)
subjectKey?
Type:
string
(optional)