Class: Aws::AccessAnalyzer::Types::Access

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

Overview

Contains information about actions and resources that define permissions to check against a policy.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#actionsArray<String>

A list of actions for the access permissions. Any strings that can be used as an action in an IAM policy can be used in the list of actions to check.

Returns:

  • (Array<String>)


30
31
32
33
34
35
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 30

class Access < Struct.new(
  :actions,
  :resources)
  SENSITIVE = []
  include Aws::Structure
end

#resourcesArray<String>

A list of resources for the access permissions. Any strings that can be used as a resource in an IAM policy can be used in the list of resources to check.

Returns:

  • (Array<String>)


30
31
32
33
34
35
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 30

class Access < Struct.new(
  :actions,
  :resources)
  SENSITIVE = []
  include Aws::Structure
end