InviteAccepterArgs constructor

const InviteAccepterArgs({
  1. required Input<String> masterId,
  2. Input<String?>? region,
})

Creates a new InviteAccepterArgs. masterId The account ID of the master Security Hub account whose invitation you're accepting. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const InviteAccepterArgs({
  required this.masterId,
  this.region,
});