Show / Hide Table of Contents

Class AccessEntryAttributes

Represents the attributes of an access entry.

Inheritance
object
AccessEntryAttributes
Implements
IAccessEntryAttributes
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.EKS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AccessEntryAttributes : IAccessEntryAttributes
Syntax (vb)
Public Class AccessEntryAttributes Implements IAccessEntryAttributes
Remarks

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.EKS;

            var accessEntryAttributes = new AccessEntryAttributes {
                AccessEntryArn = "accessEntryArn",
                AccessEntryName = "accessEntryName"
            };

Synopsis

Constructors

AccessEntryAttributes()

Represents the attributes of an access entry.

Properties

AccessEntryArn

The Amazon Resource Name (ARN) of the access entry.

AccessEntryName

The name of the access entry.

Constructors

AccessEntryAttributes()

Represents the attributes of an access entry.

public AccessEntryAttributes()
Remarks

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.EKS;

            var accessEntryAttributes = new AccessEntryAttributes {
                AccessEntryArn = "accessEntryArn",
                AccessEntryName = "accessEntryName"
            };

Properties

AccessEntryArn

The Amazon Resource Name (ARN) of the access entry.

public string AccessEntryArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

AccessEntryName

The name of the access entry.

public string AccessEntryName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IAccessEntryAttributes
Back to top Generated by DocFX