Show / Hide Table of Contents

Class AccessEntryReference

A reference to a AccessEntry resource.

Inheritance
object
AccessEntryReference
Implements
IAccessEntryReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.EKS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AccessEntryReference : IAccessEntryReference
Syntax (vb)
Public Class AccessEntryReference Implements IAccessEntryReference
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.Interfaces.EKS;

            var accessEntryReference = new AccessEntryReference {
                AccessEntryArn = "accessEntryArn",
                ClusterName = "clusterName",
                PrincipalArn = "principalArn"
            };

Synopsis

Constructors

AccessEntryReference()

A reference to a AccessEntry resource.

Properties

AccessEntryArn

The ARN of the AccessEntry resource.

ClusterName

The ClusterName of the AccessEntry resource.

PrincipalArn

The PrincipalArn of the AccessEntry resource.

Constructors

AccessEntryReference()

A reference to a AccessEntry resource.

public AccessEntryReference()
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.Interfaces.EKS;

            var accessEntryReference = new AccessEntryReference {
                AccessEntryArn = "accessEntryArn",
                ClusterName = "clusterName",
                PrincipalArn = "principalArn"
            };

Properties

AccessEntryArn

The ARN of the AccessEntry resource.

public string AccessEntryArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

ClusterName

The ClusterName of the AccessEntry resource.

public string ClusterName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

PrincipalArn

The PrincipalArn of the AccessEntry resource.

public string PrincipalArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IAccessEntryReference
Back to top Generated by DocFX