Class: Aws::EKS::Types::AccessScope

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-eks/types.rb

Overview

The scope of an ‘AccessPolicy` that’s associated to an ‘AccessEntry`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#namespacesArray<String>

A Kubernetes ‘namespace` that an access policy is scoped to. A value is required if you specified `namespace` for `Type`.

Returns:

  • (Array<String>)


179
180
181
182
183
184
# File 'lib/aws-sdk-eks/types.rb', line 179

class AccessScope < Struct.new(
  :type,
  :namespaces)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The scope type of an access policy.

Returns:

  • (String)


179
180
181
182
183
184
# File 'lib/aws-sdk-eks/types.rb', line 179

class AccessScope < Struct.new(
  :type,
  :namespaces)
  SENSITIVE = []
  include Aws::Structure
end