toHostedZoneLimitType method

HostedZoneLimitType toHostedZoneLimitType()

Implementation

HostedZoneLimitType toHostedZoneLimitType() {
  switch (this) {
    case 'MAX_RRSETS_BY_ZONE':
      return HostedZoneLimitType.maxRrsetsByZone;
    case 'MAX_VPCS_ASSOCIATED_BY_ZONE':
      return HostedZoneLimitType.maxVpcsAssociatedByZone;
  }
  throw Exception('$this is not known in enum HostedZoneLimitType');
}