Class: Aws::AuditManager::Types::Scope

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

Overview

Note:

When making an API call, you may pass Scope data as a hash:

{
  aws_accounts: [
    {
      id: "AccountId",
      email_address: "EmailAddress",
      name: "AccountName",
    },
  ],
  aws_services: [
    {
      service_name: "AWSServiceName",
    },
  ],
}

The wrapper that contains the Amazon Web Services accounts and services that are in scope for the assessment.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#aws_accountsArray<Types::AWSAccount>

The Amazon Web Services accounts that are included in the scope of the assessment.

Returns:



4409
4410
4411
4412
4413
4414
# File 'lib/aws-sdk-auditmanager/types.rb', line 4409

class Scope < Struct.new(
  :aws_accounts,
  :aws_services)
  SENSITIVE = []
  include Aws::Structure
end

#aws_servicesArray<Types::AWSService>

The Amazon Web Services services that are included in the scope of the assessment.

Returns:



4409
4410
4411
4412
4413
4414
# File 'lib/aws-sdk-auditmanager/types.rb', line 4409

class Scope < Struct.new(
  :aws_accounts,
  :aws_services)
  SENSITIVE = []
  include Aws::Structure
end