FeatureV2Args constructor

const FeatureV2Args({
  1. required Input<String> featureName,
  2. required Input<String> featureStatus,
  3. Input<String?>? region,
})

Creates a new FeatureV2Args. featureName Name of the opt-in feature to enable. Valid values: NETWORK_SCANNING. Changing this forces a new resource to be created. featureStatus Current enablement status of the feature. Valid values: ENABLED, DISABLED. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const FeatureV2Args({
  required this.featureName,
  required this.featureStatus,
  this.region,
});