toDirectConnectGatewayAttachmentType method

DirectConnectGatewayAttachmentType toDirectConnectGatewayAttachmentType()

Implementation

DirectConnectGatewayAttachmentType toDirectConnectGatewayAttachmentType() {
  switch (this) {
    case 'TransitVirtualInterface':
      return DirectConnectGatewayAttachmentType.transitVirtualInterface;
    case 'PrivateVirtualInterface':
      return DirectConnectGatewayAttachmentType.privateVirtualInterface;
  }
  throw Exception(
      '$this is not known in enum DirectConnectGatewayAttachmentType');
}