interface AccessScopeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins.CfnAccessEntryPropsMixin.AccessScopeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseks/mixins#CfnAccessEntryPropsMixin_AccessScopeProperty |
Java | software.amazon.awscdk.mixins.preview.services.eks.mixins.CfnAccessEntryPropsMixin.AccessScopeProperty |
Python | aws_cdk.mixins_preview.aws_eks.mixins.CfnAccessEntryPropsMixin.AccessScopeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_eks » mixins » CfnAccessEntryPropsMixin » AccessScopeProperty |
The scope of an AccessPolicy that's associated to an AccessEntry .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as eks_mixins } from '@aws-cdk/mixins-preview/aws-eks';
const accessScopeProperty: eks_mixins.CfnAccessEntryPropsMixin.AccessScopeProperty = {
namespaces: ['namespaces'],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| namespaces? | string[] | A Kubernetes namespace that an access policy is scoped to. |
| type? | string | The scope type of an access policy. |
namespaces?
Type:
string[]
(optional)
A Kubernetes namespace that an access policy is scoped to.
A value is required if you specified namespace for Type .
type?
Type:
string
(optional)
The scope type of an access policy.

.NET
Go
Java
Python
TypeScript