Show / Hide Table of Contents

Class CfnDomain.AdvancedSecurityOptionsInputProperty

Specifies options for fine-grained access control.

Inheritance
System.Object
CfnDomain.AdvancedSecurityOptionsInputProperty
Implements
CfnDomain.IAdvancedSecurityOptionsInputProperty
Namespace: Amazon.CDK.AWS.Elasticsearch
Assembly: Amazon.CDK.AWS.Elasticsearch.dll
Syntax (csharp)
public class AdvancedSecurityOptionsInputProperty : Object, CfnDomain.IAdvancedSecurityOptionsInputProperty
Syntax (vb)
Public Class AdvancedSecurityOptionsInputProperty
    Inherits Object
    Implements CfnDomain.IAdvancedSecurityOptionsInputProperty
Remarks

The AWS::Elasticsearch::Domain resource is being replaced by the AWS::OpenSearchService::Domain resource. While the legacy Elasticsearch resource and options are still supported, we recommend modifying your existing Cloudformation templates to use the new OpenSearch Service resource, which supports both OpenSearch and Elasticsearch. For more information about the service rename, see New resource types in the Amazon OpenSearch Service Developer Guide .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.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.Elasticsearch;

var advancedSecurityOptionsInputProperty = new AdvancedSecurityOptionsInputProperty {
    AnonymousAuthEnabled = false,
    Enabled = false,
    InternalUserDatabaseEnabled = false,
    MasterUserOptions = new MasterUserOptionsProperty {
        MasterUserArn = "masterUserArn",
        MasterUserName = "masterUserName",
        MasterUserPassword = "masterUserPassword"
    }
};

Synopsis

Constructors

AdvancedSecurityOptionsInputProperty()

Properties

AnonymousAuthEnabled

CfnDomain.AdvancedSecurityOptionsInputProperty.AnonymousAuthEnabled.

Enabled

True to enable fine-grained access control.

InternalUserDatabaseEnabled

True to enable the internal user database.

MasterUserOptions

Specifies information about the master user.

Constructors

AdvancedSecurityOptionsInputProperty()

public AdvancedSecurityOptionsInputProperty()

Properties

AnonymousAuthEnabled

CfnDomain.AdvancedSecurityOptionsInputProperty.AnonymousAuthEnabled.

public object AnonymousAuthEnabled { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-anonymousauthenabled

Enabled

True to enable fine-grained access control.

public object Enabled { get; set; }
Property Value

System.Object

Remarks

You must also enable encryption of data at rest and node-to-node encryption.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-enabled

InternalUserDatabaseEnabled

True to enable the internal user database.

public object InternalUserDatabaseEnabled { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-internaluserdatabaseenabled

MasterUserOptions

Specifies information about the master user.

public object MasterUserOptions { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-advancedsecurityoptionsinput.html#cfn-elasticsearch-domain-advancedsecurityoptionsinput-masteruseroptions

Implements

CfnDomain.IAdvancedSecurityOptionsInputProperty
Back to top Generated by DocFX