GooglePrivacyDlpV2AmazonS3BucketRegex.fromJson constructor

GooglePrivacyDlpV2AmazonS3BucketRegex.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2AmazonS3BucketRegex.fromJson(core.Map json_)
    : this(
        awsAccountRegex: json_.containsKey('awsAccountRegex')
            ? GooglePrivacyDlpV2AwsAccountRegex.fromJson(
                json_['awsAccountRegex']
                    as core.Map<core.String, core.dynamic>)
            : null,
        bucketNameRegex: json_['bucketNameRegex'] as core.String?,
      );