GooglePrivacyDlpV2AmazonS3BucketConditions.fromJson constructor

GooglePrivacyDlpV2AmazonS3BucketConditions.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2AmazonS3BucketConditions.fromJson(core.Map json_)
    : this(
        bucketTypes: (json_['bucketTypes'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
        objectStorageClasses: (json_['objectStorageClasses'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );