Class: Aws::AccessAnalyzer::Types::ResourceTypeDetails

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

Overview

Contains information about the total number of active cross-account and public findings for a resource type of an external access analyzer.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#total_active_cross_accountInteger

The total number of active cross-account findings for the resource type.

Returns:

  • (Integer)


3630
3631
3632
3633
3634
3635
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 3630

class ResourceTypeDetails < Struct.new(
  :total_active_public,
  :total_active_cross_account)
  SENSITIVE = []
  include Aws::Structure
end

#total_active_publicInteger

The total number of active public findings for the resource type.

Returns:

  • (Integer)


3630
3631
3632
3633
3634
3635
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 3630

class ResourceTypeDetails < Struct.new(
  :total_active_public,
  :total_active_cross_account)
  SENSITIVE = []
  include Aws::Structure
end