interface CfnAccessPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchServerless.Mixins.CfnAccessPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchserverless/mixins#CfnAccessPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.opensearchserverless.mixins.CfnAccessPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_opensearchserverless.mixins.CfnAccessPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchserverless » mixins » CfnAccessPolicyMixinProps |
Properties for CfnAccessPolicyPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as opensearchserverless_mixins } from '@aws-cdk/mixins-preview/aws-opensearchserverless';
const cfnAccessPolicyMixinProps: opensearchserverless_mixins.CfnAccessPolicyMixinProps = {
description: 'description',
name: 'name',
policy: 'policy',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the policy. |
| name? | string | The name of the policy. |
| policy? | string | The JSON policy document without any whitespaces. |
| type? | string | The type of access policy. |
description?
Type:
string
(optional)
The description of the policy.
name?
Type:
string
(optional)
The name of the policy.
policy?
Type:
string
(optional)
The JSON policy document without any whitespaces.
type?
Type:
string
(optional)
The type of access policy.
Currently the only option is data .

.NET
Go
Java
Python
TypeScript