interface CfnAccessPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchServerless.CfnAccessPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsopensearchserverless#CfnAccessPolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.opensearchserverless.CfnAccessPolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_opensearchserverless.CfnAccessPolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_opensearchserverless » 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 { aws_opensearchserverless as opensearchserverless } from '@aws-cdk/cfn-property-mixins';
const cfnAccessPolicyMixinProps: opensearchserverless.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