ScopeTarget constructor

const ScopeTarget({
  1. required Input<String> region,
  2. required Input<ScopeTargetTargetIdentifier> targetIdentifier,
})

Creates a new ScopeTarget. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. targetIdentifier A target identifier is a pair of identifying information for a scope.

Implementation

const ScopeTarget({
  required this.region,
  required this.targetIdentifier,
});