Class: Aws::GuardDuty::Types::KubernetesPermissionCheckedDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb

Overview

Information about the Kubernetes API for which you check if you have permission to call.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#allowedBoolean

Information whether the user has the permission to call the Kubernetes API.

Returns:

  • (Boolean)


4150
4151
4152
4153
4154
4155
4156
4157
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 4150

class KubernetesPermissionCheckedDetails < Struct.new(
  :verb,
  :resource,
  :namespace,
  :allowed)
  SENSITIVE = []
  include Aws::Structure
end

#namespaceString

The namespace where the Kubernetes API action will take place.

Returns:

  • (String)


4150
4151
4152
4153
4154
4155
4156
4157
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 4150

class KubernetesPermissionCheckedDetails < Struct.new(
  :verb,
  :resource,
  :namespace,
  :allowed)
  SENSITIVE = []
  include Aws::Structure
end

#resourceString

The Kubernetes resource with which your Kubernetes API call will interact.

Returns:

  • (String)


4150
4151
4152
4153
4154
4155
4156
4157
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 4150

class KubernetesPermissionCheckedDetails < Struct.new(
  :verb,
  :resource,
  :namespace,
  :allowed)
  SENSITIVE = []
  include Aws::Structure
end

#verbString

The verb component of the Kubernetes API call. For example, when you check whether or not you have the permission to call the CreatePod API, the verb component will be Create.

Returns:

  • (String)


4150
4151
4152
4153
4154
4155
4156
4157
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 4150

class KubernetesPermissionCheckedDetails < Struct.new(
  :verb,
  :resource,
  :namespace,
  :allowed)
  SENSITIVE = []
  include Aws::Structure
end