S3Location constructor

S3Location({
  1. required String bucketName,
  2. required String prefix,
  3. List<Grant>? accessControlList,
  4. ObjectCannedACL? cannedACL,
  5. Encryption? encryption,
  6. StorageClass? storageClass,
  7. Tagging? tagging,
  8. List<MetadataEntry>? userMetadata,
})

Implementation

S3Location({
  required this.bucketName,
  required this.prefix,
  this.accessControlList,
  this.cannedACL,
  this.encryption,
  this.storageClass,
  this.tagging,
  this.userMetadata,
});