Class AccessEntryAttributes
Represents the attributes of an access entry.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
AccessEntryName
The name of the access entry.
public string AccessEntryName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated