CreateVPCAssociationAuthorizationResponse.fromXml constructor

CreateVPCAssociationAuthorizationResponse.fromXml(
  1. XmlElement elem
)

Implementation

factory CreateVPCAssociationAuthorizationResponse.fromXml(
    _s.XmlElement elem) {
  return CreateVPCAssociationAuthorizationResponse(
    hostedZoneId: _s.extractXmlStringValue(elem, 'HostedZoneId')!,
    vpc: VPC.fromXml(_s.extractXmlChild(elem, 'VPC')!),
  );
}