ScopeTargetTargetIdentifier constructor

const ScopeTargetTargetIdentifier({
  1. required Input<ScopeTargetTargetIdentifierTargetId> targetId,
  2. required Input<String> targetType,
})

Creates a new ScopeTargetTargetIdentifier. targetId The identifier for a target, which is currently always an account ID. targetType The type of a target. A target type is currently always ACCOUNT.

Implementation

const ScopeTargetTargetIdentifier({
  required this.targetId,
  required this.targetType,
});