transAzRedundancyType function

String transAzRedundancyType(
  1. AzRedundancyType az
)

Implementation

String transAzRedundancyType(AzRedundancyType az) {
  switch (az) {
    case AzRedundancyType.azRedundancySingleAz:
      return 'single-az';
    case AzRedundancyType.azRedundancyMultiAz:
      return 'multi-az';
  }
}