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

.NET
Go
Java
Python
TypeScript