interface CfnSecurityPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchServerless.Mixins.CfnSecurityPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchserverless/mixins#CfnSecurityPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.opensearchserverless.mixins.CfnSecurityPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_opensearchserverless.mixins.CfnSecurityPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchserverless » mixins » CfnSecurityPolicyMixinProps |
Properties for CfnSecurityPolicyPropsMixin.
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 cfnSecurityPolicyMixinProps: opensearchserverless_mixins.CfnSecurityPolicyMixinProps = {
description: 'description',
name: 'name',
policy: 'policy',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the security policy. |
| name? | string | The name of the policy. |
| policy? | string | The JSON policy document without any whitespaces. |
| type? | string | The type of security policy. |
description?
Type:
string
(optional)
The description of the security 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 security policy.
Can be either encryption or network .

.NET
Go
Java
Python
TypeScript