DataGoogleDataplexDataQualityRules constructor

DataGoogleDataplexDataQualityRules({
  1. required String localName,
  2. required TfArg<String> dataScanId,
  3. TfArg<String>? location,
  4. TfArg<String>? project,
  5. String? provider,
  6. TfTimeouts? timeouts,
})

Implementation

DataGoogleDataplexDataQualityRules({
  required super.localName,
  required TfArg<String> dataScanId,
  TfArg<String>? location,
  TfArg<String>? project,
  super.provider,
  super.timeouts,
}) : super(
       terraformType: tfType,
       argMap: {
         'data_scan_id': dataScanId,
         if (location != null) 'location': location,
         if (project != null) 'project': project,
       },
     );