ApplicationAssignmentArgs constructor

const ApplicationAssignmentArgs({
  1. required Input<String> applicationArn,
  2. required Input<String> principalId,
  3. required Input<String> principalType,
  4. Input<String?>? region,
})

Creates a new ApplicationAssignmentArgs. applicationArn ARN of the application. principalId An identifier for an object in IAM Identity Center, such as a user or group. principalType Entity type for which the assignment will be created. Valid values are USER or GROUP. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const ApplicationAssignmentArgs({
  required this.applicationArn,
  required this.principalId,
  required this.principalType,
  this.region,
});