Class: Aws::GuardDuty::Types::InviteMembersRequest

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

Overview

Note:

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

{
  account_ids: ["__string"], # required
  detector_id: "__string", # required
  disable_email_notification: false,
  message: "Message",
}

InviteMembers request body.

Instance Attribute Summary collapse

Instance Attribute Details

#account_idsArray<String>

A list of account IDs of the accounts that you want to invite to GuardDuty as members.

Returns:

  • (Array<String>)


1649
1650
1651
1652
1653
1654
1655
# File 'lib/aws-sdk-guardduty/types.rb', line 1649

class InviteMembersRequest < Struct.new(
  :account_ids,
  :detector_id,
  :disable_email_notification,
  :message)
  include Aws::Structure
end

#detector_idString

Returns:

  • (String)


1649
1650
1651
1652
1653
1654
1655
# File 'lib/aws-sdk-guardduty/types.rb', line 1649

class InviteMembersRequest < Struct.new(
  :account_ids,
  :detector_id,
  :disable_email_notification,
  :message)
  include Aws::Structure
end

#disable_email_notificationBoolean

A boolean value that specifies whether you want to disable email notification to the accounts that you’re inviting to GuardDuty as members.

Returns:

  • (Boolean)


1649
1650
1651
1652
1653
1654
1655
# File 'lib/aws-sdk-guardduty/types.rb', line 1649

class InviteMembersRequest < Struct.new(
  :account_ids,
  :detector_id,
  :disable_email_notification,
  :message)
  include Aws::Structure
end

#messageString

The invitation message that you want to send to the accounts that you’re inviting to GuardDuty as members.

Returns:

  • (String)


1649
1650
1651
1652
1653
1654
1655
# File 'lib/aws-sdk-guardduty/types.rb', line 1649

class InviteMembersRequest < Struct.new(
  :account_ids,
  :detector_id,
  :disable_email_notification,
  :message)
  include Aws::Structure
end