InventoryS3BucketDestination.fromXml constructor

InventoryS3BucketDestination.fromXml(
  1. XmlElement? xml
)

Implementation

InventoryS3BucketDestination.fromXml(XmlElement? xml) {
  accountId = getProp(xml, 'AccountId')?.text;
  bucket = getProp(xml, 'Bucket')?.text;
  encryption = InventoryEncryption.fromXml(getProp(xml, 'Encryption'));
  format = getProp(xml, 'Format')?.text;
  prefix = getProp(xml, 'Prefix')?.text;
}