Show / Hide Table of Contents

Class CfnAccessEntry.AccessScopeProperty

The scope of an AccessPolicy that's associated to an AccessEntry .

Inheritance
object
CfnAccessEntry.AccessScopeProperty
Implements
CfnAccessEntry.IAccessScopeProperty
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 CfnAccessEntry.AccessScopeProperty : CfnAccessEntry.IAccessScopeProperty
Syntax (vb)
Public Class CfnAccessEntry.AccessScopeProperty Implements CfnAccessEntry.IAccessScopeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-accessentry-accessscope.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.EKS;

             var accessScopeProperty = new AccessScopeProperty {
                 Type = "type",

                 // the properties below are optional
                 Namespaces = new [] { "namespaces" }
             };

Synopsis

Constructors

AccessScopeProperty()

The scope of an AccessPolicy that's associated to an AccessEntry .

Properties

Namespaces

A Kubernetes namespace that an access policy is scoped to.

Type

The scope type of an access policy.

Constructors

AccessScopeProperty()

The scope of an AccessPolicy that's associated to an AccessEntry .

public AccessScopeProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-accessentry-accessscope.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.EKS;

             var accessScopeProperty = new AccessScopeProperty {
                 Type = "type",

                 // the properties below are optional
                 Namespaces = new [] { "namespaces" }
             };

Properties

Namespaces

A Kubernetes namespace that an access policy is scoped to.

public string[]? Namespaces { get; set; }
Property Value

string[]

Remarks

A value is required if you specified namespace for Type .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-accessentry-accessscope.html#cfn-eks-accessentry-accessscope-namespaces

Type

The scope type of an access policy.

public string Type { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-accessentry-accessscope.html#cfn-eks-accessentry-accessscope-type

Implements

CfnAccessEntry.IAccessScopeProperty
Back to top Generated by DocFX