StandardsSubscriptionArgs constructor

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

Creates a new StandardsSubscriptionArgs. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. standardsArn The ARN of a standard - see below.

Implementation

const StandardsSubscriptionArgs({
  this.region,
  required this.standardsArn,
});