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