Show / Hide Table of Contents

Interface ICfnAccessPolicyProps

Properties for defining a CfnAccessPolicy.

Namespace: Amazon.CDK.AWS.OpenSearchServerless
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnAccessPolicyProps
Syntax (vb)
Public Interface ICfnAccessPolicyProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-accesspolicy.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.OpenSearchServerless;

             var cfnAccessPolicyProps = new CfnAccessPolicyProps {
                 Name = "name",
                 Policy = "policy",
                 Type = "type",

                 // the properties below are optional
                 Description = "description"
             };

Synopsis

Properties

Description

The description of the policy.

Name

The name of the policy.

Policy

The JSON policy document without any whitespaces.

Type

The type of access policy.

Properties

Description

The description of the policy.

string? Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-accesspolicy.html#cfn-opensearchserverless-accesspolicy-description

Name

The name of the policy.

string Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-accesspolicy.html#cfn-opensearchserverless-accesspolicy-name

Policy

The JSON policy document without any whitespaces.

string Policy { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-accesspolicy.html#cfn-opensearchserverless-accesspolicy-policy

Type

The type of access policy.

string Type { get; }
Property Value

string

Remarks

Currently the only option is data .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-accesspolicy.html#cfn-opensearchserverless-accesspolicy-type

Back to top Generated by DocFX