DataGoogleKmsCryptoKeyVersion constructor

DataGoogleKmsCryptoKeyVersion({
  1. required String localName,
  2. required TfArg<String> cryptoKey,
  3. TfArg<num>? version,
  4. String? provider,
  5. TfTimeouts? timeouts,
})

Implementation

DataGoogleKmsCryptoKeyVersion({
  required super.localName,
  required TfArg<String> cryptoKey,
  TfArg<num>? version,
  super.provider,
  super.timeouts,
}) : super(
       terraformType: tfType,
       argMap: {
         'crypto_key': cryptoKey,
         if (version != null) 'version': version,
       },
     );