Show / Hide Table of Contents

Class DomainAttributes

(deprecated) Reference to an Elasticsearch domain.

Inheritance
object
DomainAttributes
Implements
IDomainAttributes
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Elasticsearch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DomainAttributes : IDomainAttributes
Syntax (vb)
Public Class DomainAttributes Implements IDomainAttributes
Remarks

Stability: Deprecated

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 domainAttributes = new DomainAttributes {
                 DomainArn = "domainArn",
                 DomainEndpoint = "domainEndpoint"
             };

Synopsis

Constructors

DomainAttributes()

(deprecated) Reference to an Elasticsearch domain.

Properties

DomainArn

(deprecated) The ARN of the Elasticsearch domain.

DomainEndpoint

(deprecated) The domain endpoint of the Elasticsearch domain.

Constructors

DomainAttributes()

(deprecated) Reference to an Elasticsearch domain.

public DomainAttributes()
Remarks

Stability: Deprecated

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 domainAttributes = new DomainAttributes {
                 DomainArn = "domainArn",
                 DomainEndpoint = "domainEndpoint"
             };

Properties

DomainArn

(deprecated) The ARN of the Elasticsearch domain.

[Obsolete("use opensearchservice module instead")]
public string DomainArn { get; set; }
Property Value

string

Remarks

Stability: Deprecated

DomainEndpoint

(deprecated) The domain endpoint of the Elasticsearch domain.

[Obsolete("use opensearchservice module instead")]
public string DomainEndpoint { get; set; }
Property Value

string

Remarks

Stability: Deprecated

Implements

IDomainAttributes
Back to top Generated by DocFX