InstanceAccessControlAttributesArgs constructor

const InstanceAccessControlAttributesArgs({
  1. required Input<List<InstanceAccessControlAttributesAttribute>> attributes,
  2. required Input<String> instanceArn,
  3. Input<String?>? region,
})

Creates a new InstanceAccessControlAttributesArgs. attributes See AccessControlAttribute for more details. instanceArn ARN of the SSO Instance. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const InstanceAccessControlAttributesArgs({
  required this.attributes,
  required this.instanceArn,
  this.region,
});